From a064ba6c4169f3de9078ffb10894d9d27d9a6a8f Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Wed, 11 Sep 2024 10:47:09 -0400 Subject: [PATCH] Server: include JWT secret in the docker compose example. This docker compose is not really an example per se, but it's being used as a reference one. So it's better to have it include the last missing piece for starting the server, which is setting the JWT secret. --- server/docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/server/docker-compose.yml b/server/docker-compose.yml index 230caa430..8be70588a 100644 --- a/server/docker-compose.yml +++ b/server/docker-compose.yml @@ -9,6 +9,7 @@ services: WAIT_FOR: "true" # We want to wait for the default services SVIX_REDIS_DSN: "redis://redis:6379" SVIX_DB_DSN: "postgresql://postgres:postgres@pgbouncer/postgres" + # SVIX_JWT_SECRET: "x" # IMPORTANT: uncomment and set a real JWT secret here. ports: - "8071:8071" depends_on: