Skip to content

Commit

Permalink
ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pelazas committed Apr 27, 2024
1 parent c057b15 commit a48b8ac
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ services:
GROUP_SERVICE_URL: http://groupservice:8005
MULTIPLAYER_SERVICE_URL: http://multiplayerservice:8006

# webapp:
# container_name: webapp-${teamname:-defaultASW}
# image: ghcr.io/arquisoft/wiq_en2a/webapp:latest
# profiles: ["dev", "prod"]
# build: ./webapp
# depends_on:
# - gatewayservice
# ports:
# - "80:80"
webapp:
container_name: webapp-${teamname:-defaultASW}
image: ghcr.io/arquisoft/wiq_en2a/webapp:latest
profiles: ["dev", "prod"]
build: ./webapp
depends_on:
- gatewayservice
ports:
- "80:80"

prometheus:
image: prom/prometheus
Expand Down
4 changes: 2 additions & 2 deletions multiplayerservice/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ require('dotenv').config();
const io = socketIo(server, {
cors: {
//origin: 'http://conoceryvencer.xyz',
//origin: process.env.WEBAPP_ENPOINT || 'http://localhost',
origin: 'http://localhost:3000',
origin: process.env.WEBAPP_ENPOINT || 'http://localhost',
//origin: 'http://localhost:3000',
methods: ['GET', 'POST'],
credentials: true
}
Expand Down

0 comments on commit a48b8ac

Please sign in to comment.