Skip to content

Commit edbcc7d

Browse files
committed
Add .env file, update .gitignore, docker-compose 8080:8080
1 parent b3afd64 commit edbcc7d

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

monolith/.env

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
PORT=8080
2+
TODOS_API_BASE_URL=https://jsonplaceholder.typicode.com

monolith/.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ lerna-debug.log*
3636
!.vscode/extensions.json
3737

3838
# dotenv environment variable files
39-
.env
40-
.env.development.local
41-
.env.test.local
42-
.env.production.local
43-
.env.local
39+
# .env
40+
# .env.development.local
41+
# .env.test.local
42+
# .env.production.local
43+
# .env.local
4444

4545
# temp directory
4646
.temp

system-test/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ services:
33
monolith:
44
image: ghcr.io/optivem/atdd-accelerator-template-typescript/monolith:latest
55
ports:
6-
- "8080:3000"
6+
- "8080:8080"

0 commit comments

Comments
 (0)