- 新增 .dockerignore 文件,忽略多种临时及中间文件 - 新增 .gitattributes 文件,配置文本文件换行及合并行为 - 新增详细的 .gitignore 文件,排除多种开发及生成文件 - 新增 VS Code C# 代码片段,提升开发效率 - 添加 Directory.Build.props,统一 MSBuild 配置和代码分析规则 - 添加空的 Directory.Build.targets,预留构建任务扩展位置 - 添加 Directory.Packages.props,实现依赖包版本集中管理和声明 |
||
|---|---|---|
| .. | ||
| mysql-init | ||
| postgres-init | ||
| clean-infrastructure.ps1 | ||
| clean-infrastructure.sh | ||
| docker-compose.yml | ||
| EXAMPLES.md | ||
| init-infrastructure.ps1 | ||
| init-infrastructure.sh | ||
| README.md | ||
Infrastructure Initialization Scripts
This directory contains scripts to help developers quickly set up the infrastructure needed for development and debugging.
Available Scripts
docker-compose.yml- Complete infrastructure setup using Docker Composeinit-infrastructure.sh- Shell script for Linux/macOSinit-infrastructure.ps1- PowerShell script for Windowsclean-infrastructure.sh- Cleanup script for Linux/macOSclean-infrastructure.ps1- Cleanup script for Windows
Quick Start
Using Docker Compose (Recommended)
# Start all infrastructure services
docker-compose up -d
# Stop all services
docker-compose down
# Stop and remove volumes (clean start)
docker-compose down -v
Using Individual Scripts
# Linux/macOS
./init-infrastructure.sh
# Windows PowerShell
.\init-infrastructure.ps1
Infrastructure Components
The scripts will set up the following services:
Database Options
- MySQL (default): Port 3306, root password: 123456
- SQL Server: Port 1433, SA password: Test123456!
- PostgreSQL: Port 5432, postgres password: 123456
Cache & Message Queue
- Redis: Port 6379, no password
- RabbitMQ: Ports 5672 (AMQP), 15672 (Management UI), guest/guest
- Kafka: Port 9092 (when using Kafka option)
Management Interfaces
- RabbitMQ Management: http://localhost:15672 (guest/guest)
- Kafka UI (if included): http://localhost:8080
Configuration
The default configuration matches the test containers setup used in the project's integration tests.