-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.dockerignore
154 lines (124 loc) · 2 KB
/
.dockerignore
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# Ignore virtual environments (if any)
venv/
env/
.qiskit/
# Ignore Conda environments
*.conda
*.tar.bz2
.qiskit-metal-env/
# Byte-compiled Python files
__pycache__/
*.pyc
*.pyo
*.pyd
# Egg files and metadata
*.egg
*.egg-info/
dist/
build/
# Ignore the PyPI and other packaging artifacts
*.eggs/
SQuADDS.egg-info/
pip-wheel-metadata/
# Logs, temporary, or swap files
*.log
*.tmp
*.swp
*.swo
*.DS_Store
# Ignore test outputs
test/
testing/
tests/__pycache__/
# Ignore documentation builds
docs/_build/
# Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Any personal or system-specific config files
*.env
*.git
.idea/
.vscode/
# Ignore dev files
to_do.md
production.md
new_features.md
dev/*
test.*
tutorials/*.csv
tutorials/figures/*
tutorials/new_interp*.png
tutorials/*parquet*.py
tutorials/adhish.ipynb
# Docker ignore
Dockerfile
*.dockerignore
docker-compose.yml
# Ignore documentation build directories
docs/build/
# Ignore data files
data/*
database/contrib_to_do.md
# Ignore testing files
testing/*
tutorials/Data_Cleaning.ipynb
tutorials/*.json
presentations/*
tutorials/dev*
tutorials/shot*.png
# Ignore operating system files
.DS_Store
Thumbs.db
# Ignore editor and IDE files
*.sublime-project
*.sublime-workspace
# Ignore build output and compiled files
/build/
dist/
out/
bin/
*.exe
*.dll
*.so
*.dylib
# Ignore package manager directories
/node_modules/
/bower_components/
# Ignore environment-specific files
.env
.env.local
.env.test
.env.production
# Ignore sensitive or personal information
secrets.yml
secrets.json
*.key
# Ignore database files
*.sqlite
*.db
# Ignore dependencies and lock files
/yarn.lock
/package-lock.json
/composer.lock
# Ignore macOS specific files
.AppleDouble
.LSOverride
# Ignore system-specific files
Icon
ehthumbs.db
Desktop.ini
# Ignore custom ignore file
.ignore
# Ignore python cache files
__pycache__/*
*.py[cod]
# cache files
squadds/joblib_cache/*
# Ignore conda environment
.conda/*
.conda
# Ignore build files
*.egg-info/*
*.egg/*
# Ignore testing files
tests/*/*