Skip to content

Commit

Permalink
Revert back .env and update compose
Browse files Browse the repository at this point in the history
  • Loading branch information
calvintanwj committed Nov 13, 2023
1 parent 00a20b6 commit c5a0ff7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 17 deletions.
1 change: 0 additions & 1 deletion collaboration-service/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ REDIS_HOST=redis
REDIS_PORT=6379
USER_SERVICE_URL=http://user-service:3000/v1
CLIENT_URL=<frontend_client_uri>
QUESTION_SERVICE_URL=http://question-service:3001/api
31 changes: 15 additions & 16 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,26 +79,25 @@ services:
- collaboration-service
restart: on-failure

# client:
# build: ./client
# ports:
# - "3002:3002"
# env_file:
# - ./client/.env
# depends_on:
# - user-service
# - question-service
# - matching-service
# - collaboration-service
# restart: on-failure

nginx-api-gateway:
build: ./etc/nginx
client:
build: ./client
ports:
- "80:80"
- "3002:3002"
env_file:
- ./client/.env
depends_on:
- user-service
- question-service
- matching-service
- collaboration-service
restart: on-failure

# nginx-api-gateway:
# build: ./etc/nginx
# ports:
# - "80:80"
# depends_on:
# - user-service
# - question-service
# - matching-service
# - collaboration-service

0 comments on commit c5a0ff7

Please sign in to comment.