From 30efd49e8f7271b7afaa1df7b7e20067be3044ed Mon Sep 17 00:00:00 2001 From: jessikitty Date: Mon, 26 Jan 2026 22:18:38 +1100 Subject: [PATCH] Remove ALLOWED_ORIGINS from docker-compose - use default from config --- docker-compose.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 276a170..39aa6e9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,11 +7,10 @@ services: dockerfile: Dockerfile container_name: family-hub-backend ports: - - "8000:8000" + - "8001:8000" environment: - DATABASE_URL=sqlite:///./family_hub.db - SECRET_KEY=${SECRET_KEY:-your-secret-key-change-in-production} - - ALLOWED_ORIGINS=http://localhost:5173,http://localhost:3000 - DEBUG=True volumes: - ./backend:/app @@ -32,7 +31,7 @@ services: - ./frontend:/app - /app/node_modules environment: - - VITE_API_URL=http://localhost:8000 + - VITE_API_URL=http://localhost:8001 depends_on: - backend restart: unless-stopped