Skip to content

Commit 1a8742d

Browse files
authored
Merge pull request #2 from samwelkanda/develop
Develop
2 parents bf88bdc + 995ccee commit 1a8742d

File tree

14 files changed

+693
-62
lines changed

14 files changed

+693
-62
lines changed

.dockerignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
27+
# PyInstaller
28+
# Usually these files are written by a python script from a template
29+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
30+
*.manifest
31+
*.spec
32+
33+
# Installer logs
34+
pip-log.txt
35+
pip-delete-this-directory.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.coverage
41+
.coverage.*
42+
.cache
43+
nosetests.xml
44+
coverage.xml
45+
*,cover
46+
47+
# Translations
48+
*.mo
49+
*.pot
50+
51+
# Django stuff:
52+
*.log
53+
54+
# Sphinx documentation
55+
docs/_build/
56+
57+
# PyBuilder
58+
target/
59+
60+
# Docker
61+
Dockerfile
62+
docker-compose.yml
63+
docker-compose.override.yml
64+
docker/docker-compose.prod.yml
65+
66+
# JetBrains
67+
.idea/
68+
# vscode
69+
.vscode

.gitignore

Lines changed: 191 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,75 @@
1+
#### joe made this: https://goel.io/joe
2+
3+
# Git style-guide:
4+
# https://github.com/agis-/git-style-guide
5+
6+
#####=== OSX ===#####
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
11+
# Icon must end with two \r
12+
Icon
13+
14+
15+
# Thumbnails
16+
._*
17+
18+
# Files that might appear on external disk
19+
.Spotlight-V100
20+
.Trashes
21+
22+
# Directories potentially created on remote AFP share
23+
.AppleDB
24+
.AppleDesktop
25+
Network Trash Folder
26+
Temporary Items
27+
.apdisk
28+
29+
#####=== Windows ===#####
30+
# Windows image file caches
31+
Thumbs.db
32+
ehthumbs.db
33+
34+
# Folder config file
35+
Desktop.ini
36+
37+
# Recycle Bin used on file shares
38+
$RECYCLE.BIN/
39+
40+
# Windows Installer files
41+
*.cab
42+
*.msi
43+
*.msm
44+
*.msp
45+
46+
# Windows shortcuts
47+
*.lnk
48+
49+
#####=== Python ===#####
50+
151
# Byte-compiled / optimized / DLL files
252
__pycache__/
353
*.py[cod]
4-
*$py.class
554

655
# C extensions
756
*.so
857

958
# Distribution / packaging
1059
.Python
11-
build/
60+
env/
1261
develop-eggs/
1362
dist/
1463
downloads/
1564
eggs/
16-
.eggs/
1765
lib/
1866
lib64/
1967
parts/
2068
sdist/
2169
var/
22-
wheels/
23-
pip-wheel-metadata/
24-
share/python-wheels/
2570
*.egg-info/
2671
.installed.cfg
2772
*.egg
28-
MANIFEST
2973

3074
# PyInstaller
3175
# Usually these files are written by a python script from a template
@@ -40,90 +84,175 @@ pip-delete-this-directory.txt
4084
# Unit test / coverage reports
4185
htmlcov/
4286
.tox/
43-
.nox/
4487
.coverage
45-
.coverage.*
4688
.cache
4789
nosetests.xml
4890
coverage.xml
49-
*.cover
50-
*.py,cover
51-
.hypothesis/
52-
.pytest_cache/
5391

5492
# Translations
5593
*.mo
5694
*.pot
5795

5896
# Django stuff:
5997
*.log
60-
local_settings.py
61-
db.sqlite3
62-
db.sqlite3-journal
63-
64-
# Flask stuff:
65-
instance/
66-
.webassets-cache
67-
68-
# Scrapy stuff:
69-
.scrapy
7098

7199
# Sphinx documentation
72100
docs/_build/
73101

74102
# PyBuilder
75103
target/
76104

77-
# Jupyter Notebook
78-
.ipynb_checkpoints
105+
#####=== Sass ===#####
106+
107+
.sass-cache
108+
*.css.map
109+
110+
#####=== Yeoman ===#####
79111

80-
# IPython
81-
profile_default/
82-
ipython_config.py
112+
node_modules/
113+
bower_components/
114+
*.log
115+
116+
build/
117+
dist/
83118

84-
# pyenv
85-
.python-version
119+
#####=== Vagrant ===#####
120+
.vagrant/
121+
122+
#####=== Node ===#####
123+
124+
# Logs
125+
logs
126+
*.log
86127

87-
# pipenv
88-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91-
# install all needed dependencies.
92-
#Pipfile.lock
128+
# Runtime data
129+
pids
130+
*.pid
131+
*.seed
93132

94-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95-
__pypackages__/
133+
# Directory for instrumented libs generated by jscoverage/JSCover
134+
lib-cov
96135

97-
# Celery stuff
98-
celerybeat-schedule
99-
celerybeat.pid
136+
# Coverage directory used by tools like istanbul
137+
coverage
100138

101-
# SageMath parsed files
102-
*.sage.py
139+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
140+
.grunt
103141

104-
# Environments
142+
# node-waf configuration
143+
.lock-wscript
144+
145+
# Compiled binary addons (http://nodejs.org/api/addons.html)
146+
build/Release
147+
148+
# Dependency directory
149+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
150+
node_modules
151+
152+
# Debug log from npm
153+
npm-debug.log
154+
155+
#### jetbrains ####
156+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
157+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
158+
# You can uncomment these lines to enable configuration sharing between
159+
# team members, or you can restrict `.idea/` folder at all (default).
160+
161+
# User-specific stuff:
162+
# .idea/**/workspace.xml
163+
# .idea/**/tasks.xml
164+
# .idea/dictionaries
165+
166+
# # Sensitive or high-churn files:
167+
# .idea/**/dataSources/
168+
# .idea/**/dataSources.ids
169+
# .idea/**/dataSources.xml
170+
# .idea/**/dataSources.local.xml
171+
# .idea/**/sqlDataSources.xml
172+
# .idea/**/dynamic.xml
173+
# .idea/**/uiDesigner.xml
174+
175+
# # Gradle:
176+
# .idea/**/gradle.xml
177+
# .idea/**/libraries
178+
179+
# # Mongo Explorer plugin:
180+
# .idea/**/mongoSettings.xml
181+
182+
# # Cursive Clojure plugin
183+
# .idea/replstate.xml
184+
185+
# Restrict `.idea/` folder at all:
186+
.idea/
187+
188+
# CMake
189+
cmake-build-debug/
190+
191+
## File-based project format:
192+
*.iws
193+
194+
## Plugin-specific files:
195+
196+
# IntelliJ
197+
/out/
198+
199+
# mpeltonen/sbt-idea plugin
200+
.idea_modules/
201+
202+
# JIRA plugin
203+
atlassian-ide-plugin.xml
204+
205+
# Crashlytics plugin (for Android Studio and IntelliJ)
206+
com_crashlytics_export_strings.xml
207+
crashlytics.properties
208+
crashlytics-build.properties
209+
fabric.properties
210+
211+
212+
#####=== Custom ===#####
213+
# Directories:
214+
media/
215+
.static/
216+
/static/
217+
218+
# File types:
219+
*.sqlite3
220+
*.db
221+
222+
# Configuration file with private data:
223+
*.env
105224
.env
106-
.venv
107-
env/
108-
venv/
109-
ENV/
110-
env.bak/
111-
venv.bak/
225+
.env.prod
226+
.env.dev
227+
.env.prod.db
228+
! .env.example
229+
230+
# Local settings files:
231+
*local.py
112232

113-
# Spyder project settings
114-
.spyderproject
115-
.spyproject
233+
# Deploy files for Docker:
234+
docker-compose.deploy.yml
116235

117-
# Rope project settings
118-
.ropeproject
236+
# Certificates:
237+
docker/caddy/certs/
119238

120-
# mkdocs documentation
121-
/site
239+
# Artifacts:
240+
.gitlab/.svn/
241+
artifacts/
122242

123-
# mypy
243+
# mypy:
124244
.mypy_cache/
125-
.dmypy.json
126-
dmypy.json
127245

128-
# Pyre type checker
129-
.pyre/
246+
# pytest:
247+
.pytest_cache/
248+
249+
# ipython:
250+
.ipython/
251+
252+
envs/ # VSCode directory where it auto finds virtualenvs
253+
/volumes # We don't want to checkin our DB volume
254+
/src/media # We don't want to checkin our Django media files
255+
/src/static # We don't want to checkin our Django static files
256+
.vscode/ # The VSCode config directory
257+
258+
/data/certbot

0 commit comments

Comments
 (0)