-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
64 lines (54 loc) · 787 Bytes
/
.gitignore
File metadata and controls
64 lines (54 loc) · 787 Bytes
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
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg
*.egg-info/
dist/
build/
.eggs/
.pytest_cache/
.mypy_cache/
# Virtual environments
venv/
env/
.venv/
.env/
# Environment / secrets
.env
*.env
!.env.example
# Database (local dev SQLite)
*.db
*.sqlite
*.sqlite3
# ML model artifacts — generated at runtime, not committed
backend/app/models/*.pkl
backend/app/models/*.json
# ML price cache — generated at runtime, Railway persistent volume
backend/app/dataset_store/
# Logs
*.log
logs/
# OS
.DS_Store
Thumbs.db
# Node / React
node_modules/
frontend/build/
frontend/.env.local
frontend/.env.development.local
frontend/.env.test.local
frontend/.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Docker
.dockerignore
# IDE
.vscode/
.idea/
*.swp
*.swo