-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore.txt
67 lines (51 loc) · 1.52 KB
/
.gitignore.txt
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
# Python cache and compilation artifacts
__pycache__/
*.pyc
*.pyo
*.egg-info/
# Python environment files
.env
# If you use pytest's cache
.pytest_cache/
# Jupyter notebook checkpoints and other temporary files
notebooks/.ipynb_checkpoints/
# Logs directory
logs/
# Virtual environments or Python virtual environments
venv/
*.venv/
env/
# IDE specific files (assuming a few common ones, adjust as needed)
.vscode/
.idea/
# Docker related
*.env # Often used for environment variables with Docker
containers/*/Dockerfile.* # Any variants of Dockerfiles
!containers/*/Dockerfile # Except the main Dockerfile
# Configuration (If sensitive data is present)
# Uncomment the next line if you want to ignore all configs
# configs/
# Libraries
lib/
# Binary or large files in data (You might have some binary or large data files that you don't want in git)
data/*/*.bin
data/*/*.tar.gz
data/*/*.zip
# Operational & utility scripts (If they contain sensitive info or compiled files)
# scripts/*.sh
# scripts/*.bin
# If there are database migration files or sensitive operational scripts
# scripts/migrations/*.env
# scripts/migrations/*.log
# Articy project files (assuming they might generate temp or binary files)
# Uncomment based on the specifics of Articy files
# articy/*.tmp
# articy/*.bin
# Assets - Depending on the nature, binary or large assets might need ignoring
# assets/*.bin
# Third party (if there are binaries or temp files)
# third_party/*.bin
# third_party/*.tmp
# OS generated files
.DS_Store # For MacOS
Thumbs.db # For Windows