File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,12 @@ POSTGRES_HOST=127.0.0.1
3131# Enables debug
3232SC_BOOT_MODE=debug
3333
34+ # rabbit settings
35+ RABBIT_HOST=rabbit
36+ RABBIT_PASSWORD=adminadmin
37+ RABBIT_PORT=5672
38+ RABBIT_SECURE=false
39+ RABBIT_USER=admin
3440
3541# webserver
3642WEBSERVER_HOST=webserver
Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ reqs: ## compiles pip requirements (.in -> .txt)
2828
2929define _create_and_validate_openapi
3030 # generating openapi specs file under $< (NOTE: Skips DEV FEATURES since this OAS is the 'offically released'!)
31- @source .env; \
31+ set -o allexport; \
32+ source .env; \
33+ set +o allexport; \
3234 export API_SERVER_DEV_FEATURES_ENABLED=$1; \
3335 python3 -c "import json; from $(APP_PACKAGE_NAME ) .main import *; print( json.dumps(app_factory().openapi(), indent=2) )" > $@
3436
You can’t perform that action at this time.
0 commit comments