Learn how to create Express.js application with an endpoint that stores records in PostgreSQL database and deploy it on AWS EC2 Instance and Digital Ocean Droplet
Build a blog with the Pelican static site generator in Python, write the posts in Markdown, then deploy it to a server you own with a custom domain.
Create a MkDocs documentation site from Markdown files, configure the theme and the built-in search, then deploy the built site to a server you own.
Start a Docusaurus documentation site, set up the config and the content, then deploy the static build to your own server with a custom domain.
Learn how to create a chat application with Django channels and deploy it in production without learning about DevOps!
Run Django on SQLite in production: create a volume for the database file, make settings respect DATABASE_URL, and set the environment variable.
Edit related models on the parent page with Django admin inlines: TabularInline, StackedInline, a change link per row, and how to limit the queryset.
You cannot put a decorator straight on a class-based view method. Use method_decorator, on the method or on the class, with login_required examples.
Add CSV and Excel import and export to the Django admin with django-import-export, including bulk update of rows that already exist from a spreadsheet.
Series of bite-sized topic-based tutorials about unleashing the power of Django Admin
Use readonly_fields in the Django admin to lock fields on the change form, show method output as a field, and make a field readonly only in some cases.
Every ModelAdmin attribute that shapes the Django admin change list: list_display, list_filter, search_fields, ordering, and more, with what each does.
Control the default order of the Django admin change list with ModelAdmin.ordering and Meta.ordering, and see which of the two wins when both are set.
Turn Django admin columns into links to related objects, so a customer name or an order date opens the change view instead of only the ID column.
Fill a Django SlugField automatically from the title with prepopulated_fields, so nobody types a slug by hand in the admin. A one line customization.
Add custom actions to the Django admin dropdown: define them inside a ModelAdmin or outside it, act on the selected rows, and report the result back.
Learn how to easily deploy a Django Project to Digital Ocean Droplet, setup environment variables, Add databases and have SSL certificate issued.
How to create a Google Cloud (GCP) VM and deploy a Django project, create a database and access the site via HTTPS.