properly set environment secret
Some checks failed
Build and Deploy API / build-and-deploy (push) Failing after 7s

This commit is contained in:
2026-03-21 00:16:52 -05:00
parent f7b537cbed
commit 9fea2c5b7b
3 changed files with 3 additions and 2 deletions

View File

@@ -11,7 +11,7 @@
"AllowedHosts": "*",
"https_port": 443,
"Jwt": {
"Key": "${JWT_SECRET}",
"Key": "",
"Issuer": "agologum-api",
"Audience": "agologum-users"
}

View File

@@ -12,6 +12,8 @@ services:
- "5000:5000"
networks:
- agologum-net
environment:
- Jwt__Key=${JWT_SECRET} # this seems to be the right way to pass env variables with secrets
networks:
agologum-net: