Initial
This commit is contained in:
4
.env
4
.env
@@ -1,4 +1,4 @@
|
|||||||
MONGO_URI=mongodb://127.0.0.1:27017/
|
MONGO_URI=mongodb://127.0.0.1:27017/
|
||||||
# MONGO_URI=mongodb://mongo/
|
# MONGO_URI=mongodb://mongo/
|
||||||
API_PORT=3503
|
API_PORT=5000
|
||||||
SOCKET_PORT=1059
|
SOCKET_PORT=8000
|
||||||
14
.vscode/settings.json
vendored
Normal file
14
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"files.exclude": {
|
||||||
|
"**/.git": true,
|
||||||
|
"**/.svn": true,
|
||||||
|
"**/.hg": true,
|
||||||
|
"**/CVS": true,
|
||||||
|
"**/.DS_Store": true,
|
||||||
|
"**/Thumbs.db": true,
|
||||||
|
"**/.retool_types/**": true,
|
||||||
|
"**/*tsconfig.json": true,
|
||||||
|
".cache": true,
|
||||||
|
"retool.config.json": true
|
||||||
|
}
|
||||||
|
}
|
||||||
10
compose.yaml
10
compose.yaml
@@ -8,9 +8,9 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
NODE_ENV: development
|
NODE_ENV: development
|
||||||
ports:
|
ports:
|
||||||
- "50013:3503" # Host port 50013 mapped to container's port 3503
|
- "5000:5000" # Host port 5000 mapped to container's port 5000
|
||||||
expose:
|
expose:
|
||||||
- 3503
|
- 5000
|
||||||
depends_on:
|
depends_on:
|
||||||
- mongo
|
- mongo
|
||||||
networks:
|
networks:
|
||||||
@@ -24,9 +24,9 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
NODE_ENV: development
|
NODE_ENV: development
|
||||||
ports:
|
ports:
|
||||||
- "50014:1059" # Changed host port to avoid conflict with API server
|
- "8000:8000" # Changed host port to avoid conflict with API server
|
||||||
expose:
|
expose:
|
||||||
- 1059
|
- 8000
|
||||||
depends_on:
|
depends_on:
|
||||||
- mongo
|
- mongo
|
||||||
networks:
|
networks:
|
||||||
@@ -36,7 +36,7 @@ services:
|
|||||||
image: mongo:latest
|
image: mongo:latest
|
||||||
container_name: mongo-Dwinzocontainer
|
container_name: mongo-Dwinzocontainer
|
||||||
ports:
|
ports:
|
||||||
- "3502:27017"
|
- "27017:27017"
|
||||||
volumes:
|
volumes:
|
||||||
- mongo-data:/data/db
|
- mongo-data:/data/db
|
||||||
networks:
|
networks:
|
||||||
|
|||||||
Reference in New Issue
Block a user