- Create index.html for the web application interface. - Implement deploy.sh script for building and deploying the application to a Docker Swarm manager. - Add docker-compose.yml for defining application and PostgreSQL service configurations.
74 lines
1.1 KiB
Plaintext
74 lines
1.1 KiB
Plaintext
# .gitignore for ASP.NET Core + React (Vite) project on macOS
|
|
# Generated for Visual Studio, Rider, and dotnet CLI workflows
|
|
|
|
# Visual Studio & Rider
|
|
.vs/
|
|
.idea/
|
|
*.suo
|
|
*.user
|
|
*.userosscache
|
|
*.sln.docstates
|
|
*.DotSettings.user
|
|
|
|
# Build results
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
build/
|
|
publish/
|
|
artifacts/
|
|
|
|
# Resharper
|
|
_ReSharper*/
|
|
|
|
# NuGet
|
|
*.nupkg
|
|
packages/
|
|
project.lock.json
|
|
|
|
# Dotnet & EF Core
|
|
*.db
|
|
*.db-journal
|
|
secrets.json
|
|
dotnet_user_secrets
|
|
|
|
# Logs
|
|
*.log
|
|
TestResults/
|
|
coverage/
|
|
*.trx
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.AppleDouble
|
|
._*
|
|
Icon
|
|
|
|
# Editor directories and files
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# Temporary files
|
|
*~
|
|
*.tmp
|
|
|
|
# Node/React Frontend (Vite)
|
|
OTSSignsOrchestrator/ClientApp/node_modules/
|
|
OTSSignsOrchestrator/ClientApp/dist/
|
|
OTSSignsOrchestrator/ClientApp/.env.local
|
|
OTSSignsOrchestrator/ClientApp/.env.*.local
|
|
OTSSignsOrchestrator/ClientApp/npm-debug.log*
|
|
OTSSignsOrchestrator/ClientApp/yarn-debug.log*
|
|
OTSSignsOrchestrator/ClientApp/yarn-error.log*
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# Configuration & Secrets
|
|
appsettings.Development.json
|
|
.template-cache/
|
|
.env
|
|
*.env
|
|
|
|
# Application-specific
|
|
logs/
|