CORS support (#183)

* Changes to same .env file

* Updated sample env files

* icarus_envy version bump

* Adding CORS

* Added other urls

* Code formatting

* Changed allowed urls

* Modified docker compose. Port changes

* Changed port

* Cleanup

* Version bump
This commit was merged in pull request #183.
This commit is contained in:
KD
2025-10-10 16:33:15 -04:00
committed by GitHub
parent 309d76785a
commit caaec248db
6 changed files with 62 additions and 19 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ services:
ports:
# Map host port 8000 to container port 3000 (adjust as needed)
# Format: "HOST_PORT:CONTAINER_PORT"
- "8000:3000"
- "8000:8000"
env_file:
- .env
depends_on:
@@ -29,7 +29,7 @@ services:
container_name: auth_api
restart: unless-stopped
ports:
- "8001:3000" # Map host port 8000 to container port 8000 (adjust container port based on your app's EXPOSE in Dockerfile)
- "8001:8001" # Map host port 8000 to container port 8000 (adjust container port based on your app's EXPOSE in Dockerfile)
# environment:
# Environment variables your API needs, e.g., database connection
# Add other necessary environment variables