mcpmc/.gitignore
Ryan Malloy e54031ce6d Fix Docker configuration and add environment template
- Fix backend Dockerfile for proper development hot-reload setup
- Fix frontend Dockerfile to install dependencies at runtime
- Update pyproject.toml package configuration
- Add .env.example template (never commit actual .env)
- Properly exclude .env from version control
2025-09-10 01:46:28 -06:00

97 lines
826 B
Plaintext

# Dependencies
node_modules/
.pnpm-debug.log*
.npm/
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Environment files
.env
.env.local
.env.production
# Virtual environments
.venv/
env/
venv/
ENV/
env.bak/
venv.bak/
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Docker
.dockerignore
# Database
*.sqlite
*.sqlite3
*.db
# Build outputs
dist/
.output/
.astro/
# Test outputs
reports/
coverage/
.coverage
.pytest_cache/
.cache/
# Temporary files
tmp/
temp/
*.tmp
# Backup files
backups/
*.bak
*.backup
# uv
.python-version