Skip to content

Commit

Permalink
split routes into github and google
Browse files Browse the repository at this point in the history
Signed-off-by: Erika Ledesma <[email protected]>
  • Loading branch information
erikajledesma committed Jul 6, 2024
1 parent 2a3c095 commit 4682fad
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,16 @@ services:
models:
build: "src/models/"
command: "echo Models Container Working"
routes:
google:
build: "src/routes/"
command: "npx ts-node google.ts"
ports:
- "5000:5000"
- "8081:8081"
env_file: "src/routes/.env"
depends_on:
- "models"
github:
build: "src/routes/"
command: "npx ts-node github.ts"
ports:
Expand All @@ -31,4 +40,5 @@ services:
# Requires server services to run before running client servers
depends_on:
# - "account"
- "routes"
- "google"
- "github"

0 comments on commit 4682fad

Please sign in to comment.