-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨[#64] add setup config rst templates
- Loading branch information
Showing
5 changed files
with
153 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
open_api_framework/templates/open_api_framework/components/setup_config_step.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{% load doc_tags %} | ||
{% spaceless %} | ||
{{ title }} | ||
|
||
Enable/Disable configuration: | ||
""""""""""""""""""""""""""""" | ||
|
||
:: | ||
|
||
{{ enable_setting }} | ||
|
||
{% if required_settings %} | ||
Required settings | ||
""""""""""""""""" | ||
{% for setting in required_settings %} | ||
* ``SECRET_KEY``: Secret key that's used for certain cryptographic utilities. | ||
{% endfor %}{% endif %} | ||
|
||
{% if optional_settings %} | ||
Optional Settings | ||
""""""""""""""""" | ||
{% for setting in optional_settings %} | ||
* ``SECRET_KEY``: Secret key that's used for certain cryptographic utilities. | ||
{% endfor %}{% endif %} | ||
|
||
{% endspaceless %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
open_api_framework/templates/open_api_framework/setup_config.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{% load doc_tags %}.. _installation_setup_config: | ||
|
||
============================= | ||
Setup configuration reference | ||
============================= | ||
|
||
{% block intro %} | ||
Setup configuration description | ||
{% endblock %} | ||
|
||
Configuration Environment Variables | ||
=================================== | ||
|
||
All configuration steps currently available: | ||
|
||
{{ rendered_configuration_steps | safe }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters