You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my opinion there should be a way to automatically generate a configuration reference for my Django project when using django-configurations so that I can easily include it in project documentation without just referencing some source file.
I was thinking of a workflow like the following:
fromconfigurationsimportConfiguration, valuesclassMyConfiguration(Configuration):
DEBUG=values.BooleanValue(default=True)
SECRET_KEY=values.SecretValue(description="The django secret key", reference="https://docs.djangoproject.com/en/3.0/ref/settings/#std:setting-SECRET_KEY")
IS_AWESOME_FEATURE_ENABLED=values.BooleanValue(description="Enables the awesome feature because of which you want to run this application")
Seems like a good idea to me but since you wrote this over 3 years ago I am not sure if you are still interested in doing it?
If you are lets have a discussion otherwise close this issue.
I would not bpother... this project seems doomed since the projects leads do not respond and the Jazzband owner seems to want to be unwilling to let people help jazzband/help#379
In my opinion there should be a way to automatically generate a configuration reference for my Django project when using django-configurations so that I can easily include it in project documentation without just referencing some source file.
I was thinking of a workflow like the following:
Which renders as
I am willing to implement and maintain this feature if it is desired.
I am also open for discussions about the details.
The text was updated successfully, but these errors were encountered: