-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
40 lines (34 loc) · 1.24 KB
/
.gitignore
File metadata and controls
40 lines (34 loc) · 1.24 KB
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
# Python
.venv/
__pycache__/
*.pyc
*.pyo
*.pyd
*.egg-info/
# ── SECRETS — never commit these ─────────────────────────
# config.yaml contains api key hashes, SMTP creds, Stripe keys.
# Commit config.example.yaml instead (see below).
config.yaml
.env
.env.*
# ── Database ──────────────────────────────────────────────
workflow-api.db
workflow-api.db-wal
workflow-api.db-shm
*.lock
# ── Logs ──────────────────────────────────────────────────
logs/usage.log
logs/stripe_events.json
logs/pending_cancellations.json
logs/*.log
resend_cooldown.json
# ── OS / IDE ──────────────────────────────────────────────
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
# ── Landing page (hosted separately) ─────────────────────
site/
# ── Test artifacts ────────────────────────────────────────
_test_*