-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (45 loc) · 1.21 KB
/
Copy path.gitignore
File metadata and controls
53 lines (45 loc) · 1.21 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
# Python
__pycache__/
*.py[cod]
.venv/
venv/
*.egg-info/
.pytest_cache/
.ruff_cache/
# Node
node_modules/
dist/
*.local
# Env & secrets
.env
.env.*
!.env.example
# Local debugging scratch scripts at the backend root -- these have carried
# hardcoded live Catalyst OAuth tokens before; keep them un-committable. Real
# tests live in backend/tests/, which this does not touch.
/backend/test_*.py
# Local databases & artifacts
*.db
*.sqlite3
spike/baseline.json
.playwright-mcp/
# REAL DATASET — never commit actual KSP crime data to this (public) repo.
# Drop organizer-provided files into data/raw/; they stay local-only.
# `**/` (not just `data/*`) so this also covers backend/data/raw -- a plain
# `data/*` only matches the repo-root data/ dir (gitignore patterns with a
# mid-string slash are anchored to the .gitignore's own location), which
# let a stale backend/data/raw/*.csv snapshot get committed by accident and
# silently shadow the Docker build's own regeneration step (see Dockerfile).
**/data/*
!data/README.md
# TypeScript build cache
*.tsbuildinfo
# IDE / OS
.vscode/
.idea/
.DS_Store
Thumbs.db
# Catalyst CLI debug output (not deployment config -- that's committed)
catalyst-debug.log
# AI Agent Configs
.agents/