|
| 1 | +# ----------------------------------------------------------------------------- |
| 2 | +# SYSTEM |
| 3 | +# ----------------------------------------------------------------------------- |
| 4 | + |
| 5 | +**/.bash_history |
| 6 | +**/.DS_Store |
| 7 | +**/Thumbs.db |
| 8 | + |
| 9 | +# ----------------------------------------------------------------------------- |
| 10 | +# KEYS & TEMPORARY FILES |
| 11 | +# ----------------------------------------------------------------------------- |
| 12 | + |
| 13 | +**/configs/aws/*/aws-credentials.json |
| 14 | +**/configs/aws/*/compose.temp.yml |
| 15 | +**/configs/aws/*/db.creds.json |
| 16 | +**/configs/aws/*/db.sql |
| 17 | +**/configs/aws/*/dns-add-record.json |
| 18 | +**/configs/aws/*/dns-delete-record.json |
| 19 | +**/configs/vault/ |
| 20 | +**/*.pem |
| 21 | +**/*.pub |
| 22 | + |
| 23 | +# ----------------------------------------------------------------------------- |
| 24 | +# IDEs and EDITORS |
| 25 | +# ----------------------------------------------------------------------------- |
| 26 | + |
| 27 | +**/.c9/ |
| 28 | +**/.history |
| 29 | +**/.idea/ |
| 30 | +**/.settings/ |
| 31 | +**/.classpath |
| 32 | +**/.project |
| 33 | +**/.mr.developer.cfg |
| 34 | +**/.pydevproject |
| 35 | +**/*.chproj |
| 36 | +**/*.launch |
| 37 | +**/*.sublime-* |
| 38 | +**/*.sublime-workspace |
| 39 | +**/.vscode/ |
| 40 | + |
| 41 | +# ----------------------------------------------------------------------------- |
| 42 | +# ENVIRONMENTS |
| 43 | +# ----------------------------------------------------------------------------- |
| 44 | + |
| 45 | +**/ENV/ |
| 46 | +**/env/ |
| 47 | +**/env.bak/ |
| 48 | +**/env_*/ |
| 49 | +**/env3/ |
| 50 | +**/venv/ |
| 51 | +**/venv.bak/ |
| 52 | +**/.env/ |
| 53 | +**/.venv/ |
| 54 | + |
| 55 | +# ----------------------------------------------------------------------------- |
| 56 | +# GIT |
| 57 | +# ----------------------------------------------------------------------------- |
| 58 | + |
| 59 | +**/.git/ |
| 60 | +**/.gitignore |
| 61 | + |
| 62 | +# ----------------------------------------------------------------------------- |
| 63 | +# GITHUB |
| 64 | +# ----------------------------------------------------------------------------- |
| 65 | + |
| 66 | +**/.github/ |
| 67 | + |
| 68 | +# ----------------------------------------------------------------------------- |
| 69 | +# LOCAL CONFIGURATIONS & SETTINGS |
| 70 | +# ----------------------------------------------------------------------------- |
| 71 | + |
| 72 | +**/settings/local.py |
| 73 | +**/README.md |
| 74 | +**/LICENSE |
| 75 | +**/.exclude |
| 76 | + |
| 77 | +# ----------------------------------------------------------------------------- |
| 78 | +# DOCKER |
| 79 | +# ----------------------------------------------------------------------------- |
| 80 | + |
| 81 | +**/docker-compose.override.yml |
| 82 | +**/docker-compose.local.yml |
| 83 | +**/local.yml |
| 84 | + |
1 | 85 | # -----------------------------------------------------------------------------
|
2 | 86 | # BACKEND - DJANGO / PYTHON
|
3 | 87 | # -----------------------------------------------------------------------------
|
4 | 88 |
|
5 | 89 | # Byte-compiled / optimized / DLL files
|
6 |
| -__pycache__/ |
7 |
| -*.py[cod] |
8 |
| -*$py.class |
9 |
| -.pytest_cache |
| 90 | +**/__pycache__/ |
| 91 | +**/*.py[cod] |
| 92 | +**/*$py.class |
| 93 | +**/.pytest_cache |
10 | 94 |
|
11 | 95 | # C extensions
|
12 |
| -*.so |
| 96 | +**/*.so |
13 | 97 |
|
14 | 98 | # Distribution / packaging
|
15 |
| -.Python |
16 |
| -build/ |
17 |
| -develop-eggs/ |
18 |
| -dist/ |
19 |
| -downloads/ |
20 |
| -eggs/ |
21 |
| -.eggs/ |
22 |
| -lib/ |
23 |
| -lib64/ |
24 |
| -parts/ |
25 |
| -sdist/ |
26 |
| -var/ |
27 |
| -wheels/ |
28 |
| -share/python-wheels/ |
29 |
| -*.egg-info/ |
30 |
| -.installed.cfg |
31 |
| -*.egg |
32 |
| -MANIFEST |
| 99 | +**/.Python |
| 100 | +**/build/ |
| 101 | +**/develop-eggs/ |
| 102 | +**/dist/ |
| 103 | +**/downloads/ |
| 104 | +**/eggs/ |
| 105 | +**/.eggs/ |
| 106 | +**/lib/ |
| 107 | +**/lib64/ |
| 108 | +**/parts/ |
| 109 | +**/sdist/ |
| 110 | +**/var/ |
| 111 | +**/wheels/ |
| 112 | +**/share/python-wheels/ |
| 113 | +**/*.egg-info/ |
| 114 | +**/.installed.cfg |
| 115 | +**/*.egg |
| 116 | +**/MANIFEST |
33 | 117 |
|
34 | 118 | # PyInstaller
|
35 | 119 | # Usually these files are written by a python script from a template
|
36 | 120 | # before PyInstaller builds the exe, so as to inject date/other infos into it.
|
37 |
| -*.manifest |
38 |
| -*.spec |
| 121 | + |
| 122 | +**/*.manifest |
| 123 | +**/*.spec |
39 | 124 |
|
40 | 125 | # Installer logs
|
41 |
| -pip-log.txt |
42 |
| -pip-delete-this-directory.txt |
| 126 | +**/pip-log.txt |
| 127 | +**/pip-delete-this-directory.txt |
| 128 | + |
| 129 | +# Lint |
| 130 | +**/.pylintrc |
43 | 131 |
|
44 | 132 | # Unit test / coverage reports
|
45 |
| -htmlcov/ |
46 |
| -.tox/ |
47 |
| -.nox/ |
48 |
| -.coverage |
49 |
| -.coverage.* |
50 |
| -.cache |
51 |
| -nosetests.xml |
52 |
| -coverage.xml |
53 |
| -*.cover |
54 |
| -.hypothesis/ |
55 |
| -.pytest_cache/ |
| 133 | +**/htmlcov/ |
| 134 | +**/locust/ |
| 135 | +**/.tox/ |
| 136 | +**/.nox/ |
| 137 | +**/coverage/ |
| 138 | +**/.coveragerc |
| 139 | +**/.coverage |
| 140 | +**/.coverage.* |
| 141 | +**/coverage.xml |
| 142 | +**/*.cover |
| 143 | +**/.cache/ |
| 144 | +**/nosetests.xml |
| 145 | +**/.hypothesis/ |
| 146 | +**/.pytest_cache/ |
| 147 | +**/.pytest-queries |
| 148 | +**/pyproject.toml |
| 149 | +**/pytest.ini |
| 150 | +**/sonar-project.properties |
| 151 | +**/.scannerwork/ |
56 | 152 |
|
57 | 153 | # Translations
|
58 |
| -*.mo |
59 |
| -*.pot |
| 154 | +**/*.mo |
| 155 | +**/*.pot |
60 | 156 |
|
61 | 157 | # Django stuff:
|
62 |
| -*.log |
63 |
| -local_settings.py |
64 |
| -db.sqlite3 |
65 |
| -media/ |
| 158 | +**/*.log |
| 159 | +**/local_settings.py |
| 160 | +**/db.sqlite3 |
| 161 | +**/media/ |
| 162 | +**/*.box |
| 163 | +**/*.pyc |
| 164 | +**/*.pyo |
| 165 | +**/bower_components/ |
| 166 | +**/configs/vault/ |
| 167 | +**/deployment_*.py |
| 168 | +**/dump.rdb |
| 169 | +**/nohup.out |
| 170 | +**/octave-core |
| 171 | +**/parser.out |
| 172 | +**/parsetab.py |
| 173 | +**/personal_data/ |
| 174 | +**/backups |
| 175 | +**/mod_wsgi-4.4.21/* |
| 176 | +**/postgres-data |
| 177 | +**/redis-stable |
| 178 | +**/static/ |
| 179 | +**/staticfiles/ |
66 | 180 |
|
67 | 181 | # Flask stuff:
|
68 |
| -instance/ |
69 |
| -.webassets-cache |
| 182 | +**/instance/ |
| 183 | +**/.webassets-cache/ |
70 | 184 |
|
71 | 185 | # Scrapy stuff:
|
72 |
| -.scrapy |
| 186 | +**/.scrapy |
73 | 187 |
|
74 | 188 | # Sphinx documentation
|
75 |
| -docs/_build/ |
| 189 | +**/docs/ |
| 190 | +**/_build |
| 191 | +**/_autosummary |
76 | 192 |
|
77 | 193 | # PyBuilder
|
78 |
| -target/ |
| 194 | +**/target/ |
79 | 195 |
|
80 | 196 | # Jupyter Notebook
|
81 |
| -.ipynb_checkpoints |
| 197 | +**/.ipynb_checkpoints |
| 198 | +**/*.ipynb |
82 | 199 |
|
83 | 200 | # IPython
|
84 |
| -profile_default/ |
85 |
| -ipython_config.py |
| 201 | +**/profile_default/ |
| 202 | +**/ipython_config.py |
86 | 203 |
|
87 | 204 | # pyenv
|
88 |
| -.python-version |
| 205 | +**/.python-version |
89 | 206 |
|
90 | 207 | # celery beat schedule file
|
91 |
| -celerybeat-schedule |
| 208 | +**/celerybeat-schedule |
92 | 209 |
|
93 | 210 | # SageMath parsed files
|
94 |
| -*.sage.py |
95 |
| - |
96 |
| -# Environments |
97 |
| -.env |
98 |
| -.venv |
99 |
| -env/ |
100 |
| -venv/ |
101 |
| -ENV/ |
102 |
| -env.bak/ |
103 |
| -venv.bak/ |
| 211 | +**/*.sage.py |
104 | 212 |
|
105 | 213 | # Spyder project settings
|
106 |
| -.spyderproject |
107 |
| -.spyproject |
| 214 | +**/.spyderproject |
| 215 | +**/.spyproject |
108 | 216 |
|
109 | 217 | # Rope project settings
|
110 |
| -.ropeproject |
| 218 | +**/.ropeproject |
111 | 219 |
|
112 | 220 | # mkdocs documentation
|
113 |
| -/site |
| 221 | +**/site |
114 | 222 |
|
115 | 223 | # mypy
|
116 |
| -.mypy_cache/ |
117 |
| -.dmypy.json |
118 |
| -dmypy.json |
| 224 | +**/mypyls/ |
| 225 | +**/.mypy_cache/ |
| 226 | +**/.dmypy.json |
| 227 | +**/dmypy.json |
119 | 228 |
|
120 | 229 | # Pyre type checker
|
121 |
| -.pyre/ |
122 |
| - |
123 |
| - |
124 |
| -# ----------------------------------------------------------------------------- |
125 |
| -# LOCAL CONFIGURATIONS & SETTINGS |
126 |
| -# ----------------------------------------------------------------------------- |
| 230 | +**/.pyre |
127 | 231 |
|
128 |
| -local.py |
129 |
| -result.json |
130 |
| - |
131 |
| - |
132 |
| -# ----------------------------------------------------------------------------- |
133 |
| -# SYSTEM |
134 |
| -# ----------------------------------------------------------------------------- |
| 232 | +# pyenv |
| 233 | +**/.python-version |
135 | 234 |
|
136 |
| -# IDEs and editors |
137 |
| -.idea/ |
138 |
| -.vscode/ |
139 |
| -.project |
140 |
| -.pydevproject |
141 |
| -.mr.developer.cfg |
142 |
| -.classpath |
143 |
| -.c9/ |
144 |
| -*.launch |
145 |
| -.settings/ |
146 |
| -*.chproj |
147 |
| -*.sublime-* |
148 |
| -*.sublime-workspace |
149 |
| -.DS_Store |
150 |
| -.vscode/ |
151 |
| -!.vscode/settings.json |
152 |
| -!.vscode/tasks.json |
153 |
| -!.vscode/launch.json |
154 |
| -!.vscode/extensions.json |
155 |
| -.history |
156 |
| - |
157 |
| -# System Files |
158 |
| -.DS_Store |
159 |
| -Thumbs.db |
160 |
| -*.icloud |
161 |
| -thumbnail_kvstore* |
162 |
| -octave-workspace |
163 |
| -.bash_history |
164 |
| -nginx_signing* |
165 |
| -*.sock |
166 |
| -*.sock.lock |
167 |
| -*.bk |
| 235 | +# Requirements |
| 236 | +**/requirements-*.txt |
0 commit comments