🔧(dev) generate the JWT signing key when bootstrapping the dev stack

Thw private key needed to generate a jwt token will be mandatory. In
order to ease the development we want to automate its generation
This commit is contained in:
Manuel Raynaud
2026-09-22 16:00:42 +02:00
parent 61b396ebc6
commit dde9718ca0
6 changed files with 44 additions and 2 deletions
+2
View File
@@ -82,6 +82,7 @@ services:
volumes:
- ./src/backend:/app
- ./data/static:/data/static
- ./data/jwt:/data/jwt:ro
- /app/.venv
depends_on:
postgresql:
@@ -111,6 +112,7 @@ services:
volumes:
- ./src/backend:/app
- ./data/static:/data/static
- ./data/jwt:/data/jwt:ro
- /app/.venv
depends_on:
- app-dev