- Create Dockerfile for backend (.NET 9.0 multi-stage build) - Create Dockerfile for frontend (Node + Nginx multi-stage build) - Create nginx.conf for frontend with API proxy - Create docker-compose.yml with db, backend, frontend services - Add .dockerignore files for backend, frontend, and root - Configure health checks for all services - Configure PostgreSQL volume for persistent data Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
41 lines
355 B
Text
41 lines
355 B
Text
# Node modules
|
|
node_modules/
|
|
|
|
# npm cache
|
|
npm-cache/
|
|
|
|
# Dist directory (will be built in container)
|
|
dist/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Build output
|
|
build/
|
|
|
|
# Test coverage
|
|
coverage/
|