Code Fellows 401
Day 34 Notes
Home
Reading
Django Settings Best Practices
Bookmark and Review
White Noise
CORS
Things I want to know more about
- Store sensitive information outside of version control.
- Use environment variables to store sensitive information.
- Keep settings file structure simple and organized.
- Store reusable settings in separate modules.
- Use settings.py to set default values, with the ability to overwrite them in environment-specific files.
- Keep configuration files in the base directory of the project.
- Store development, testing, and production settings in separate files.
- Avoid storing sensitive information in code comments.