blob: 229fdf0645cb864fc29af645728405e151dded39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# ==========================================
# 1. Python Environment & Bytecode
# ==========================================
__pycache__/
*.py[cod]
*$py.class
.venv/
venv/
ENV/
env/
*.env
# ==========================================
# 2. Local Configuration & Secrets (CRITICAL)
# ==========================================
.env
.env.local
.env.*.local
*.pem
*.key
*.cert
# ==========================================
# 3. Testing & Coverage
# ==========================================
.pytest_cache/
.coverage
htmlcov/
.pytest_cache/
# ==========================================
# 4. Databases (Local SQL testing)
# ==========================================
*.db
*.sqlite3
postgres-data/ # If you mount your Postgres volume locally
# ==========================================
# 5. Build, Docker & OS files
# ==========================================
.DS_Store
Thumbs.db
build/
dist/
*.egg-info/
.docker-volumes/
# ==========================================
# 6. IDE / Editor Configurations
# ==========================================
.vscode/
.idea/
*.suo
*.ntvs*
*.njsproj
*.sln
*.swp
|