-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
P.O.C: Manage Django Settings with Dynaconf #15702
base: devel
Are you sure you want to change the base?
Conversation
Quality Gate passedIssues Measures |
|
||
# del set_application_name | ||
|
||
# settings.populate_obj(sys.modules[__name__]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a replacement for the commented code here? Is it possible to obtain these behaviors (like local_*.py
) with dynaconf?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
# Load default settings. | ||
# from .defaults import * # NOQA | ||
# from awx.settings.main import settings |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this replaced by something else now - to have development / production inherit all the settings from default, with defaults coming at lower precedence.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So how would the |
Dynaconf P.O.C