August 2016
Beginner to intermediate
717 pages
15h 24m
English
As noted earlier, you will be creating new features in the development environment, test them in the testing environment, then put the website to a staging server to let other people to try the new features, and lastly, the website will be deployed to the production server for public access. Each of these environments can have specific settings and you will see how to organize them in this recipe.
In a Django project, we'll create settings for each environment: development, testing, staging, and production.
Follow these steps to configure project settings:
myproject directory, create a conf Python module with the following files: __init__.py ...Read now
Unlock full access