diff --git a/code/websites/pokedex.online/backups/backup_20260130_000014.tar.gz b/code/websites/pokedex.online/backups/backup_20260130_000014.tar.gz deleted file mode 100644 index 36495f8..0000000 Binary files a/code/websites/pokedex.online/backups/backup_20260130_000014.tar.gz and /dev/null differ diff --git a/code/websites/pokedex.online/backups/backup_20260130_002743.tar.gz b/code/websites/pokedex.online/backups/backup_20260130_002743.tar.gz new file mode 100644 index 0000000..2c17708 Binary files /dev/null and b/code/websites/pokedex.online/backups/backup_20260130_002743.tar.gz differ diff --git a/code/websites/pokedex.online/docker-compose.tmp.yml b/code/websites/pokedex.online/docker-compose.tmp.yml index daa835d..f63f442 100644 --- a/code/websites/pokedex.online/docker-compose.tmp.yml +++ b/code/websites/pokedex.online/docker-compose.tmp.yml @@ -10,6 +10,10 @@ services: container_name: pokedex-frontend ports: - '8099:80' + environment: + # Discord OAuth redirect URI (set dynamically by deployment script) + - VITE_DISCORD_REDIRECT_URI=${VITE_DISCORD_REDIRECT_URI:-http://localhost:8099/oauth/callback} + - VITE_DISCORD_CLIENT_ID=${VITE_DISCORD_CLIENT_ID} depends_on: backend: condition: service_healthy @@ -38,7 +42,10 @@ services: dockerfile: Dockerfile container_name: pokedex-backend ports: - - '3099:3000' + - Discord OAuth Redirect URI (set dynamically by deployment script) + - DISCORD_REDIRECT_URI=${DISCORD_REDIRECT_URI:-http://localhost:3099/oauth/callback} + - VITE_DISCORD_REDIRECT_URI=${VITE_DISCORD_REDIRECT_URI:-http://localhost:8099/oauth/callback} + # '3099:3000' environment: - NODE_ENV=production - PORT=3000