File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,9 @@ run: PGPORT=$(shell docker compose port postgresql 5432 | cut -d: -f2)
120120run : export DB__URL=postgresql://cm-service@localhost:${PGPORT}/cm-service
121121run : export DB__PASSWORD=INSECURE-PASSWORD
122122run : export DB__ECHO=true
123+ run : export FEATURE_API_V2=1
124+ run : export FEATURE_API_V1=0
125+ run : export FEATURE_DAEMON_V2=0
123126run : run-compose
124127 alembic upgrade head
125128 python3 -m lsst.cmservice.main
@@ -129,6 +132,12 @@ run-worker: PGPORT=$(shell docker compose port postgresql 5432 | cut -d: -f2)
129132run-worker : export DB__URL=postgresql://cm-service@localhost:${PGPORT}/cm-service
130133run-worker : export DB__PASSWORD=INSECURE-PASSWORD
131134run-worker : export DB__ECHO=true
135+ run-worker : export FEATURE_API_V2=0
136+ run-worker : export FEATURE_API_V1=0
137+ run-worker : export FEATURE_DAEMON_V2=1
138+ run-worker : export FEATURE_DAEMON_CAMPAIGNS=1
139+ run-worker : export FEATURE_DAEMON_NODES=1
140+ run-worker : export FEATURE_ALLOW_TASK_UPSERT=1
132141run-worker : run-compose
133142 alembic upgrade head
134143 python3 -m lsst.cmservice.daemon
You can’t perform that action at this time.
0 commit comments