bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/Django

Django

Deploy Django

Deploy Django focused on Deploy Django - Choose Provider and related concepts.

Lesson 1

Deploy Django - Choose Provider

Deploy Django - Choose Provider

2 min
Read lesson →
Lesson 2

Deploy Django - Create Requirements

Lock in Dependencies When you create a Django application, there are some Python packages that your project depends on. Django itself is a Python package, and we have to make sure that the server whe…

2 min
Read lesson →
Lesson 3

Deploy Django - django.config

Provider-Specific Settings We have chosen AWS as our hosting provider, and Elastic Beanstalk as a service to deploy the Django project, and it has some specific requirements..ebextension Folder It re…

2 min
Read lesson →
Lesson 4

Deploy Django Project - Create zip File

Zip Your Project To wrap your project into a .zip file, you cannot zip the entire project folder, but choose the files and folders manually. The files to include in the .zip file are highlighted (blu…

2 min
Read lesson →
Lesson 5visual

Deploy Django - Elastic Beanstalk

Elastic Beanstalk In AWS, navigate to the Elastic Beanstalk application, as we did in the Choose Provider chapter, and click the "Create application" button: Create EB Application Once you have click…

2 min
Read lesson →
Lesson 6

Deploy Django - Update Project

Deploy Changes Any changes you do with the application locally, on your own computer, is not visible on the deployed version. So if you make a change, and you want it to be visible on the deployed ve…

2 min
Read lesson →