-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
71 lines (60 loc) · 1.48 KB
/
.gitignore
File metadata and controls
71 lines (60 loc) · 1.48 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
claude-session.log
tmp/*
time-of-last-review.txt
# Agent loop preflight if AGENT_LOOP_TMP points here; optional scratch under agents/ (default: $TMPDIR/pos-agent-loop)
agents/.pos-agent-loop/
agents/tmp/
agents2/001-gh-reviewer/time-of-last-review.txt
.tmp/
.DS_Store
*.swp
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
.mypy_cache/
.pytest_cache/
.ruff_cache/
# Virtual environments (keep venv out of git)
back/venv/
back/.venv/
.venv/
venv/
# Local config (copy from config.env.example)
config.env
# Demo/local credentials (do not commit)
.env
# Uploads directory (user-uploaded files)
back/uploads/
# Pre-deploy database backups (created on server by deploy script)
backups/
# Certbot webroot and HAProxy combined PEM (host-specific; certbot/README.md is tracked)
certbot/www/
certbot/haproxy-certs/*.pem
certbot/haproxy-certs/*.crt
certbot/haproxy-certs/*.key
# HAProxy base compose self-signed dev cert (generate locally; see haproxy/certs/README.md)
haproxy/certs/*.pem
haproxy/certs/*.crt
haproxy/certs/*.key
# Legacy path if used
certs/*.pem
certs/*.crt
certs/*.key
# Revolut sandbox certificates and private key (never commit)
revolut-certs/
# Generated for ng serve (scripts/flatten-marketing-for-angular.sh)
front/marketing-flat/
# Node / Angular (front has its own .gitignore too, this is just extra safety)
node_modules/
dist/
.angular/cache/
# Long-running go-ahead-loop.sh log + pid (see scripts/go-ahead-loop.sh)
.go-ahead-loop.log
.go-ahead-loop.pid
# IDEs
.idea/
.cursor/
.factory/