chore: update gitignore to allow Vben packages directory

This commit is contained in:
sam 2026-02-13 21:34:52 +08:00
parent 96503a593d
commit c3ae2b618c
6 changed files with 7 additions and 7 deletions

View File

@ -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)
- **RabbitMQ AMQP**: `localhost:5672` (guest/guest)
- **RabbitMQ 管理界面**: http://localhost:15672 (guest/guest)

View File

@ -132,10 +132,10 @@ Update your `appsettings.Development.json` with these connection strings:
```json
{
"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;",
"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": {
"HostName": "localhost",

View File

@ -214,7 +214,7 @@ function Start-Infrastructure {
Write-Host ""
Write-Host "📋 Service Summary:" -ForegroundColor Cyan
Write-Host "==================="
Write-Host "✅ Redis: localhost:6379"
Write-Host "✅ Redis: 81.68.223.70:16379,password=sl52788542"
if ($Postgres) {
Write-Host "✅ PostgreSQL: localhost:5432 (postgres/123456)"

View File

@ -146,7 +146,7 @@ main() {
echo
echo "📋 Service Summary:"
echo "==================="
echo "✅ Redis: localhost:6379"
echo "✅ Redis: 81.68.223.70:16379,password=sl52788542"
echo "✅ MySQL: localhost:3306 (root/123456)"
echo "✅ RabbitMQ: localhost:5672 (guest/guest)"
echo "📊 RabbitMQ Management UI: http://localhost:15672"

View File

@ -7,7 +7,7 @@
},
"ConnectionStrings": {
"PostgreSQL": "Host=localhost;Database=dev;Username=postgres;Password=123456",
"Redis": "localhost:6379"
"Redis": "81.68.223.70:16379,password=sl52788542"
},
"RabbitMQ": {
"HostName": "localhost",

View File

@ -8,7 +8,7 @@
"AllowedHosts": "*",
"ConnectionStrings": {
"PostgreSQL": "Host=localhost;Database=dev;Username=postgres;Password=123456",
"Redis": "localhost:6379"
"Redis": "81.68.223.70:16379,password=sl52788542"
},
"RabbitMQ": {
"HostName": "localhost",