-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
55 lines (44 loc) · 797 Bytes
/
.gitignore
File metadata and controls
55 lines (44 loc) · 797 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
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# Virtual Environments
venv/
env/
ENV/
fastapi_env/
new_venv/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Environment variables
.env
.env.local
# Config with sensitive data (GitHub Actions will generate this)
app/domain/config.py
app/domain/config.py.example
# Logs
*.log
# Model weights (optional - uncomment if you don't want to track them)
# *.pt
# *.pth
# Temporary files
*.tmpx
*.bak
# Hugging Face cache (로컬 개발용 - Docker에서는 이미지에 포함)
.cache/
# Troubleshooting 문서는 추적하지만, 로컬 수정사항은 제외
TROUBLESHOOTING_CLIP_CACHE.md
SSH_TROUBLESHOOTING.md
GITHUB_ACTIONS_TROUBLESHOOTING.md
# Deployment guides
GCP_DEPLOYMENT_GUIDE.md
.github/BUILD_OPTIMIZATION.md