-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.gitignore
More file actions
66 lines (52 loc) · 952 Bytes
/
Copy path.gitignore
File metadata and controls
66 lines (52 loc) · 952 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
65
66
# people-detection Ignore outputs
people-detection/outputs/
# Report-generation 관련 민감정보
report-generation/.env
# chatbot 관련 민감정보
chatbot/.env
# Backend 관련 파일
docker-compose.yml
frontend/server/.env
# 1) Python 일반
__pycache__/
*.py[cod]
*.egg
*.egg-info
dist/
build/
*.log
*.sqlite3
*.pyc
*.pyo
# 2) 가상환경
venv/
.venv/
env/
# 3) 환경변수 및 민감정보
.env
*.env
# 4) Docker 볼륨 / 임시 폴더
db_data/
logs/
# 5) OS 특수 파일
.DS_Store
Thumbs.db
# 6) Alembic 캐시 (마이그레이션 파일은 커밋)
backend/alembic/versions/__pycache__/
backend/alembic/__pycache__/
# Frontend 관련
# 로그 파일
logs/
*.log
npm-debug.log*
yarn-debug.log*
pnpm-debug.log*
lerna-debug.log*
# node_modules (모든 폴더의)
**/node_modules
# 프론트엔드 빌드 폴더 (예: Vite의 경우, dist)
dist
dist-ssr
*.local
# Server 관련 (frontend/server 폴더에 있는 .env)
server/.env