Skip to content

Commit

Permalink
Updating ports in NOTES files for all templates
Browse files Browse the repository at this point in the history
  • Loading branch information
croblesm committed Jun 21, 2024
1 parent c0dd9d9 commit 57c1cfa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/dotnet-aspire/NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ network_mode: service:db
By default, web frameworks and tools often only listen to localhost inside the container. As a result, we recommend using the `forwardPorts` property to make these ports available locally.

This project uses the `5000` and `5001` ports for DAB, and the port `1433` for SQL Server:
This project uses the `5000` and `5001` ports for .NET Aspire, and the port `1433` for SQL Server:

```json
"forwardPorts": [5000, 5001, 8000, 1433]
"forwardPorts": [5000, 5001, 1433]
```
> **Note:** You can add additional ports to this list as needed.

Expand Down
4 changes: 2 additions & 2 deletions src/dotnet/NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ network_mode: service:db
By default, web frameworks and tools often only listen to localhost inside the container. As a result, we recommend using the `forwardPorts` property to make these ports available locally.

This project uses the `5000` and `5001` ports for DAB, and the port `1433` for SQL Server:
This project uses the `5000` and `5001` ports for .NET, and the port `1433` for SQL Server:

```json
"forwardPorts": [5000, 5001, 8000, 1433]
"forwardPorts": [5000, 5001, 1433]
```
> **Note:** You can add additional ports to this list as needed.

Expand Down
4 changes: 2 additions & 2 deletions src/javascript-node/NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ network_mode: service:db
By default, web frameworks and tools often only listen to localhost inside the container. As a result, we recommend using the `forwardPorts` property to make these ports available locally.

This project uses the `5000` and `5001` ports for DAB, and the port `1433` for SQL Server:
This project uses the `3000` port for Node.js (JavaScript), and the port `1433` for SQL Server:

```json
"forwardPorts": [5000, 5001, 8000, 1433]
"forwardPorts": [3000, 1433]
```
> **Note:** You can add additional ports to this list as needed.

Expand Down
4 changes: 2 additions & 2 deletions src/python/NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ network_mode: service:db
By default, web frameworks and tools often only listen to localhost inside the container. As a result, we recommend using the `forwardPorts` property to make these ports available locally.

This project uses the `5000` and `5001` ports for DAB, and the port `1433` for SQL Server:
This project uses the `500` port for Python, and the port `1433` for SQL Server:

```json
"forwardPorts": [5000, 5001, 8000, 1433]
"forwardPorts": [5000, 1433]
```
> **Note:** You can add additional ports to this list as needed.

Expand Down

0 comments on commit 57c1cfa

Please sign in to comment.