local_settings.py: clean way to store deployment secrets #3
No reviewers
Labels
No labels
No milestone
No project
No assignees
2 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: mystiq/sso#3
Loading…
Reference in a new issue
No description provided.
Delete branch "realaravinth/mystiq-sso:wip-local-settings"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Modifying
sso/settings.py
is not ergonomic, it might change with every iteration. Usingsso/local_settings/local_settings.py
to overridesso/settings.py
with deployment-specific, confidential configuration is safer and cleaner too../sso/local_settings/local_settings.py
: deployment-specific confidential configuration parameters./sso/local_settings/local_settings.example.py
: an example of the above fileref: mystiq/MVP#33