Zion Boggan
repos/Drophawk/.gitignore
zionboggan.com ↗
67 lines · text
History for this file →
1
# DropHawk .gitignore
2
 
3
# Secrets
4
.env
5
.env.*
6
!.env.example
7
*.pem
8
*.key
9
*.crt
10
 
11
# Rust
12
target/
13
**/*.rs.bk
14
Cargo.lock.bak
15
 
16
# Python
17
__pycache__/
18
*.py[cod]
19
*.egg-info/
20
.venv/
21
.mypy_cache/
22
.ruff_cache/
23
.pytest_cache/
24
.vcr/
25
 
26
# Node / Next.js
27
node_modules/
28
.next/
29
out/
30
build/
31
dist/
32
.vercel/
33
*.tsbuildinfo
34
next-env.d.ts
35
 
36
# Playwright
37
/test-results/
38
/playwright-report/
39
/blob-report/
40
/playwright/.cache/
41
 
42
# Editor
43
.vscode/
44
.idea/
45
*.swp
46
*.swo
47
.DS_Store
48
 
49
# Docker
50
docker-compose.override.yml
51
 
52
# Backups
53
backups/
54
*.sql.gz
55
*.dump
56
 
57
# Coverage
58
coverage/
59
*.lcov
60
.tarpaulin/
61
 
62
# OS
63
Thumbs.db
64
 
65
# Local data (never commit volumes)
66
data/
67
volumes/