Skip to content

Commit c9b619a

Browse files
Staging into Master (#58)
2 parents 60269d2 + 01d32e7 commit c9b619a

30 files changed

+673
-1023
lines changed

.coveragerc

-37
This file was deleted.

.dockerignore

+185-116
Original file line numberDiff line numberDiff line change
@@ -1,167 +1,236 @@
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+
185
# -----------------------------------------------------------------------------
286
# BACKEND - DJANGO / PYTHON
387
# -----------------------------------------------------------------------------
488

589
# 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
1094

1195
# C extensions
12-
*.so
96+
**/*.so
1397

1498
# 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
33117

34118
# PyInstaller
35119
# Usually these files are written by a python script from a template
36120
# before PyInstaller builds the exe, so as to inject date/other infos into it.
37-
*.manifest
38-
*.spec
121+
122+
**/*.manifest
123+
**/*.spec
39124

40125
# 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
43131

44132
# 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/
56152

57153
# Translations
58-
*.mo
59-
*.pot
154+
**/*.mo
155+
**/*.pot
60156

61157
# 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/
66180

67181
# Flask stuff:
68-
instance/
69-
.webassets-cache
182+
**/instance/
183+
**/.webassets-cache/
70184

71185
# Scrapy stuff:
72-
.scrapy
186+
**/.scrapy
73187

74188
# Sphinx documentation
75-
docs/_build/
189+
**/docs/
190+
**/_build
191+
**/_autosummary
76192

77193
# PyBuilder
78-
target/
194+
**/target/
79195

80196
# Jupyter Notebook
81-
.ipynb_checkpoints
197+
**/.ipynb_checkpoints
198+
**/*.ipynb
82199

83200
# IPython
84-
profile_default/
85-
ipython_config.py
201+
**/profile_default/
202+
**/ipython_config.py
86203

87204
# pyenv
88-
.python-version
205+
**/.python-version
89206

90207
# celery beat schedule file
91-
celerybeat-schedule
208+
**/celerybeat-schedule
92209

93210
# 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
104212

105213
# Spyder project settings
106-
.spyderproject
107-
.spyproject
214+
**/.spyderproject
215+
**/.spyproject
108216

109217
# Rope project settings
110-
.ropeproject
218+
**/.ropeproject
111219

112220
# mkdocs documentation
113-
/site
221+
**/site
114222

115223
# mypy
116-
.mypy_cache/
117-
.dmypy.json
118-
dmypy.json
224+
**/mypyls/
225+
**/.mypy_cache/
226+
**/.dmypy.json
227+
**/dmypy.json
119228

120229
# Pyre type checker
121-
.pyre/
122-
123-
124-
# -----------------------------------------------------------------------------
125-
# LOCAL CONFIGURATIONS & SETTINGS
126-
# -----------------------------------------------------------------------------
230+
**/.pyre
127231

128-
local.py
129-
result.json
130-
131-
132-
# -----------------------------------------------------------------------------
133-
# SYSTEM
134-
# -----------------------------------------------------------------------------
232+
# pyenv
233+
**/.python-version
135234

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

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* text=auto eol=lf
2+
*.{cmd,[cC][mM][dD]} text eol=crlf
3+
*.{bat,[bB][aA][tT]} text eol=crlf

0 commit comments

Comments
 (0)