Add Backend to React with Django REST Framework and Docker
In this tutorial, I'll show you how to add a Django REST Framework Backend to a React project.
https://www.youtube.com/watch?v=GbQwi_UB4FE
Django REST Framework is an addition to Django that adds functionality, making it easier to build…
Deploying Django to Google App Engine using Docker
In this guide I'm going to show you how to deploy a Django application to Google App Engine (GAE) using Docker.
Specifically, we'll be doing this:
Creating a new Django project with Docker and Docker ComposeCreating a placeholder…
Use Docker to create a new Django project in one line
If you already have Docker on your machine, you can create a new Django project (using any version) using a single command.
Create in an app/ directory:
docker run -v ${PWD}/app:/app -w /app python:3.9-alpine sh -c "pip install Django==3.2…
How to use GitHub Actions
In our advanced course on building REST APIs, we teach how to use Travis-CI to run unit tests and linting for your project.
Since launching the course, GitHub has launched their own CI/CD workflow tool called GitHub Actions and many students…