Update settings, documentation

This commit is contained in:
jamesrom
2023-10-06 21:03:36 +11:00
parent e387086890
commit b27f57d05d
2 changed files with 19 additions and 19 deletions

View File

@ -12,19 +12,19 @@ global_settings = Dynaconf(
envvar_prefix=False,
merge_enabled=True,
settings_files=[join(current_dir, f) for f in [
"settings_prod/.secrets.toml"
"settings/.secrets.toml",
"settings/configuration.toml",
"settings/ignore.toml",
"settings/language_extensions.toml",
"settings/pr_add_docs.toml",
"settings/pr_code_suggestions_prompts.toml",
"settings/pr_description_prompts.toml",
"settings/pr_information_from_user_prompts.toml",
"settings/pr_questions_prompts.toml",
"settings/pr_reviewer_prompts.toml",
"settings/pr_questions_prompts.toml",
"settings/pr_description_prompts.toml",
"settings/pr_code_suggestions_prompts.toml",
"settings/pr_sort_code_suggestions_prompts.toml",
"settings/pr_information_from_user_prompts.toml",
"settings/pr_update_changelog_prompts.toml",
"settings/pr_add_docs.toml",
"settings_prod/.secrets.toml"
]]
)