diff --git a/.env.example b/.env.example index c89d2bf..585ae99 100644 --- a/.env.example +++ b/.env.example @@ -1,8 +1,8 @@ # Replicate API token (get yours at https://replicate.com/account/api-tokens) REPLICATE_API_TOKEN=your_token_here -# Port for the frontend (default: 80) -FRONTEND_PORT=80 +# Port for the frontend (default: 1984) +FRONTEND_PORT=1984 # Frontend URL for CORS (update if deploying to a domain) FRONTEND_URL=http://localhost diff --git a/docker-compose.yml b/docker-compose.yml index ada4327..e45679e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -30,7 +30,7 @@ services: container_name: iqai-frontend restart: unless-stopped ports: - - "${FRONTEND_PORT:-80}:80" + - "${FRONTEND_PORT:-1984}:80" depends_on: backend: condition: service_healthy