Create .gitignore

This commit is contained in:
sassanix
2025-06-11 20:07:22 -03:00
committed by GitHub
parent 71a406d20e
commit 5fc8cbe56c

74
.gitignore vendored Normal file
View File

@@ -0,0 +1,74 @@
# --- Python ---
# Byte-compiled / optimized / C extension files
__pycache__/
*.pyc
*.pyo
*.pyd
# Distribution / packaging
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual Environments
.env/
.venv/
env/
venv/
ENV/
env.bak/
venv.bak/
# --- Project-Specific ---
# Environment variables
# CRITICAL: This file contains secrets and should NEVER be committed.
# An example file (.env.example) should be used as a template instead.
.env
# User-uploaded files (receipts, manuals, photos)
# This directory is stateful data and does not belong in version control.
/uploads/
# Docker-managed volumes for persistent data
# These are stateful and should not be committed.
/postgres_data/
/warracker_uploads/
# Developer/diagnostic scripts, not part of the core application.
scripts/
# --- IDE / Editor Configuration ---
.idea/
.vscode/
*.swp
*~
# --- OS-generated files ---
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Windows
Thumbs.db
ehthumbs.db
ehthumbs_vista.db
*.stackdump
# --- Log files ---
*.log
logs/