chore: update gitignore to allow Vben packages directory
This commit is contained in:
parent
96503a593d
commit
c3ae2b618c
@ -86,7 +86,7 @@ docker run --restart unless-stopped --name netcorepal-rabbitmq -p 5672:5672 -p 1
|
|||||||
|
|
||||||
启动后,可以通过以下地址访问各个服务:
|
启动后,可以通过以下地址访问各个服务:
|
||||||
|
|
||||||
- **Redis**: `localhost:6379`
|
- **Redis**: `81.68.223.70:16379,password=sl52788542`
|
||||||
- **MySQL**: `localhost:3306` (root/123456)
|
- **MySQL**: `localhost:3306` (root/123456)
|
||||||
- **RabbitMQ AMQP**: `localhost:5672` (guest/guest)
|
- **RabbitMQ AMQP**: `localhost:5672` (guest/guest)
|
||||||
- **RabbitMQ 管理界面**: http://localhost:15672 (guest/guest)
|
- **RabbitMQ 管理界面**: http://localhost:15672 (guest/guest)
|
||||||
|
|||||||
@ -132,10 +132,10 @@ Update your `appsettings.Development.json` with these connection strings:
|
|||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"ConnectionStrings": {
|
"ConnectionStrings": {
|
||||||
"Redis": "localhost:6379,defaultDatabase=0",
|
"Redis": "81.68.223.70:16379,password=sl52788542,defaultDatabase=0",
|
||||||
"MySql": "Server=localhost;Port=3306;Database=abctemplate;Uid=root;Pwd=123456;",
|
"MySql": "Server=localhost;Port=3306;Database=abctemplate;Uid=root;Pwd=123456;",
|
||||||
"SqlServer": "Server=localhost,1433;Database=abctemplate;User Id=sa;Password=Test123456!;TrustServerCertificate=true;",
|
"SqlServer": "Server=localhost,1433;Database=abctemplate;User Id=sa;Password=Test123456!;TrustServerCertificate=true;",
|
||||||
"PostgreSQL": "Host=localhost;Port=5432;Database=abctemplate;Username=postgres;Password=123456;"
|
"PostgreSQL": "Host=localhost;Port=15432;Database=abctemplate;Username=postgres;Password=123456;"
|
||||||
},
|
},
|
||||||
"RabbitMQ": {
|
"RabbitMQ": {
|
||||||
"HostName": "localhost",
|
"HostName": "localhost",
|
||||||
|
|||||||
@ -214,7 +214,7 @@ function Start-Infrastructure {
|
|||||||
Write-Host ""
|
Write-Host ""
|
||||||
Write-Host "📋 Service Summary:" -ForegroundColor Cyan
|
Write-Host "📋 Service Summary:" -ForegroundColor Cyan
|
||||||
Write-Host "==================="
|
Write-Host "==================="
|
||||||
Write-Host "✅ Redis: localhost:6379"
|
Write-Host "✅ Redis: 81.68.223.70:16379,password=sl52788542"
|
||||||
|
|
||||||
if ($Postgres) {
|
if ($Postgres) {
|
||||||
Write-Host "✅ PostgreSQL: localhost:5432 (postgres/123456)"
|
Write-Host "✅ PostgreSQL: localhost:5432 (postgres/123456)"
|
||||||
|
|||||||
@ -146,7 +146,7 @@ main() {
|
|||||||
echo
|
echo
|
||||||
echo "📋 Service Summary:"
|
echo "📋 Service Summary:"
|
||||||
echo "==================="
|
echo "==================="
|
||||||
echo "✅ Redis: localhost:6379"
|
echo "✅ Redis: 81.68.223.70:16379,password=sl52788542"
|
||||||
echo "✅ MySQL: localhost:3306 (root/123456)"
|
echo "✅ MySQL: localhost:3306 (root/123456)"
|
||||||
echo "✅ RabbitMQ: localhost:5672 (guest/guest)"
|
echo "✅ RabbitMQ: localhost:5672 (guest/guest)"
|
||||||
echo "📊 RabbitMQ Management UI: http://localhost:15672"
|
echo "📊 RabbitMQ Management UI: http://localhost:15672"
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
},
|
},
|
||||||
"ConnectionStrings": {
|
"ConnectionStrings": {
|
||||||
"PostgreSQL": "Host=localhost;Database=dev;Username=postgres;Password=123456",
|
"PostgreSQL": "Host=localhost;Database=dev;Username=postgres;Password=123456",
|
||||||
"Redis": "localhost:6379"
|
"Redis": "81.68.223.70:16379,password=sl52788542"
|
||||||
},
|
},
|
||||||
"RabbitMQ": {
|
"RabbitMQ": {
|
||||||
"HostName": "localhost",
|
"HostName": "localhost",
|
||||||
|
|||||||
@ -8,7 +8,7 @@
|
|||||||
"AllowedHosts": "*",
|
"AllowedHosts": "*",
|
||||||
"ConnectionStrings": {
|
"ConnectionStrings": {
|
||||||
"PostgreSQL": "Host=localhost;Database=dev;Username=postgres;Password=123456",
|
"PostgreSQL": "Host=localhost;Database=dev;Username=postgres;Password=123456",
|
||||||
"Redis": "localhost:6379"
|
"Redis": "81.68.223.70:16379,password=sl52788542"
|
||||||
},
|
},
|
||||||
"RabbitMQ": {
|
"RabbitMQ": {
|
||||||
"HostName": "localhost",
|
"HostName": "localhost",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user