Skip to content

Commit 06cdf14

Browse files
committed
Add data pipeline dir to settings
1 parent 4c8da86 commit 06cdf14

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

llmstack/server/settings.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,14 @@
584584
else [os.path.join(BASE_DIR, "contrib", "apps", "templates")]
585585
)
586586

587+
DATA_PIPELINES_DIR = (
588+
os.getenv("DATA_PIPELINES_DIR").split(",")
589+
if os.getenv("DATA_PIPELINES_DIR")
590+
else [
591+
os.path.join(BASE_DIR, "contrib", "data", "pipelines"),
592+
]
593+
)
594+
587595
SOCIALACCOUNT_PROVIDERS = {
588596
"connection_google": {
589597
# For each OAuth based provider, either add a ``SocialApp``

0 commit comments

Comments
 (0)