- Add development and production configuration templates - Include Docker build files for containerized deployment - Add Nginx configuration with SSL/TLS setup - Include environment configuration examples - Add SSL certificate setup and management - Configure application schemas and validation - Support for both local and production deployment scenarios Provides flexible deployment options from development to production with proper security, monitoring, and configuration management.
39 lines
317 B
Text
39 lines
317 B
Text
# Development files
|
|
.git/
|
|
.github/
|
|
.windsurf/
|
|
*.md
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Test files
|
|
*_test.go
|
|
tests/
|
|
|
|
# Build artifacts
|
|
bin/
|
|
cli/zig-out/
|
|
.zig-cache/
|
|
|
|
# Runtime data
|
|
data/
|
|
logs/
|
|
experiments/
|
|
dump.rdb
|
|
|
|
# Secrets
|
|
*.key
|
|
*.pem
|
|
secrets/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
|
|
# Documentation
|
|
docs/
|
|
examples/
|