remove secret key base

This commit is contained in:
Chris
2026-01-28 12:37:32 -08:00
parent cedd8cfc35
commit b95a374296
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -15,4 +15,6 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build with Docker Compose
run: docker compose build
run: docker compose build
env:
SECRET_KEY_BASE: dummy-key-for-build
+1 -1
View File
@@ -1,7 +1,7 @@
x-shared-env: &shared-env
DATABASE_URL: postgres://postgres:password@postgres:5432
BOOT_MODE: local
SECRET_KEY_BASE: a38fcb39d60f9d146d2a0053a25024b9
SECRET_KEY_BASE: ${SECRET_KEY_BASE:?SECRET_KEY_BASE is required}
APP_HOST: http://localhost:${PORT:-3000}
ALLOWED_HOSTNAME: "*"