mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-01 19:30:40 +08:00
15 lines
394 B
Python
15 lines
394 B
Python
from os.path import abspath, dirname, join
|
|
|
|
from dynaconf import Dynaconf
|
|
|
|
current_dir = dirname(abspath(__file__))
|
|
settings = Dynaconf(
|
|
envvar_prefix=False,
|
|
settings_files=[join(current_dir, f) for f in [
|
|
"settings/.secrets.toml",
|
|
"settings/configuration.toml",
|
|
"settings/pr_reviewer_prompts.toml",
|
|
"settings/pr_questions_prompts.toml"
|
|
]]
|
|
)
|