We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6495a0c commit 77b848bCopy full SHA for 77b848b
docker/orchestrator/entrypoint.sh
@@ -15,7 +15,13 @@ if [ -f ${CORE_OVERRIDE}/pyproject.toml ]; then
15
# Run any missing migrations on the database
16
python main.py db upgrade heads
17
18
- uvicorn --host 0.0.0.0 --port 8080 $UVICORN_ARGS main:app --reload --proxy-headers --reload-dir $CORE_OVERRIDE
+ uvicorn --host 0.0.0.0 --port 8080 $UVICORN_ARGS main:app --reload --proxy-headers \
19
+ --reload-dir $CORE_OVERRIDE \
20
+ --reload-dir products \
21
+ --reload-dir services \
22
+ --reload-dir translations \
23
+ --reload-dir utils \
24
+ --reload-dir workflows
25
else
26
27
0 commit comments