Files
netdeploy2/.gitignore
2026-02-03 17:41:29 -06:00

56 lines
571 B
Plaintext

# Python bytecode
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
.venv/
venv/
env/
netdeploy/
ENV/
# Flask / Python cache
instance/
.cache/
.pytest_cache/
# Environment variables
.env
.env.local
.env.*.local
# Database files
*.db
*.sqlite3
# Flask-Migrate
migrations/
!migrations/README
# Logs
*.log
# OS files
.DS_Store
Thumbs.db
# Editor files
.vscode/
.idea/
*.swp
*.swo
# Compiled assets (for later if you add frontend tooling)
node_modules/
dist/
build/
# PDF outputs (when you add them later)
generated_pdfs/
*.pdf
# Temporary files
tmp/
temp/