-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
80 lines (71 loc) · 1.15 KB
/
.gitignore
File metadata and controls
80 lines (71 loc) · 1.15 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
71
72
73
74
75
76
77
78
79
80
# Environment variables (CRITICAL: Never commit API keys!)
.env
.env.local
.env.production
.env.development
frontend/.env
frontend/.env.local
backend/.env
backend/.env.local
# Dependencies
node_modules/
frontend/node_modules/
# Note: package-lock.json should be committed for production consistency
# package-lock.json
# frontend/package-lock.json
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Python virtual environment
venv/
env/
ENV/
# IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Logs
*.log
logs/
# Data directories - keep structure but ignore runtime files
backend/data/*.db
backend/data/faiss_index/*
!backend/data/faiss_index/.gitkeep
backend/data/audio/*
!backend/data/audio/.gitkeep
# Keep the main data directory structure
!backend/data/.gitkeep
# Frontend build output
frontend/dist/
# Uploads directory - keep structure but ignore PDF files
backend/uploads/*.pdf
uploads/*.pdf
# Keep the uploads directory structure
!backend/uploads/.gitkeep
# Audio files (may contain large TTS output)
*.mp3
*.wav
*.m4a
*.ogg