Skip to content

Commit

Permalink
fix: FORMS-1703 Added Tags to port numbers, removed unused port number (
Browse files Browse the repository at this point in the history
#1576)

* fix: FORMS-1703 Added Tags to port numbers and removed unused port number 8081

* fix: FORMS-1703 Added CHEFS Frontend in the portnumbers
  • Loading branch information
revanth-banala authored Jan 22, 2025
1 parent 218f289 commit 5fa905d
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,12 @@

// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
4222, // NATS Server 1
4223, // NATS Server 2
4224, // NATS Server 3
5173, // CHEFS Frontend
5432, // PostgreSQL
8080, // CHEFS Backend
8081,
4222, //nats
4223, //nats
4224 // nats
8080 // CHEFS Backend
],

// Use 'postCreateCommand' to run commands after the container is created.
Expand Down Expand Up @@ -57,5 +56,25 @@

"containerEnv": {
"NODE_CONFIG_DIR": "${containerWorkspaceFolder}/.devcontainer/chefs_local"
},
"portsAttributes": {
"4222": {
"label": "NATS Server 1"
},
"4223": {
"label": "NATS Server 2"
},
"4224": {
"label": "NATS Server 3"
},
"5173": {
"label": "CHEFS Frontend"
},
"5432": {
"label": "PostgreSQL"
},
"8080": {
"label": "CHEFS Backend"
}
}
}

0 comments on commit 5fa905d

Please sign in to comment.