-
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
6 changed files
with
198 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 %} | ||
* ``{{ setting }}``: {% config_var_description setting detailed_info %} | ||
{% endfor %}{% endif %} | ||
|
||
{% if optional_settings %} | ||
Optional Settings | ||
""""""""""""""""" | ||
{% for setting in optional_settings %} | ||
* ``{{ setting }}``: {% config_var_description setting detailed_info %} | ||
{% 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
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