Skip to content

Commit 76e7fc3

Browse files
fix env
1 parent 28a440f commit 76e7fc3

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

services/storage/.env-devel

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
CELERY_RESULT_EXPIRES=P7D
2+
3+
RABBIT_HOST=rabbit
4+
RABBIT_PASSWORD=adminadmin
5+
RABBIT_PORT=5672
6+
RABBIT_SECURE=false
7+
RABBIT_USER=admin
8+
9+
REDIS_HOST=redis
10+
REDIS_PORT=6379
11+
REDIS_PASSWORD=adminadmin
12+
REDIS_SECURE=false
13+
REDIS_USER=null
14+
15+
STORAGE_ENDPOINT=storage:8080
16+
STORAGE_HOST=storage
17+
STORAGE_LOGLEVEL=INFO
18+
STORAGE_PORT=8080
19+
STORAGE_PROFILING=1
20+
STORAGE_TRACING=null

services/storage/Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@ include ../../scripts/common.Makefile
55
include ../../scripts/common-service.Makefile
66

77

8-
.env-ignore:
9-
$(APP_CLI_NAME) echo-dotenv > $@
10-
118
.PHONY: openapi.json
129
openapi-specs: openapi.json
13-
openapi.json: .env-ignore
10+
openapi.json: .env
1411
# generating openapi specs file (need to have the environment set for this)
1512
@set -o allexport; \
1613
source $<; \

0 commit comments

Comments
 (0)