Skip to content

Commit 353c0b1

Browse files
committedAug 12, 2021
Initial commit
0 parents  commit 353c0b1

34 files changed

+239906
-0
lines changed
 

‎.gitignore

+326
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,326 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/python,django,pycharm
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,django,pycharm
4+
5+
### Django ###
6+
*.log
7+
*.pot
8+
*.pyc
9+
__pycache__/
10+
local_settings.py
11+
db.sqlite3
12+
db.sqlite3-journal
13+
media
14+
15+
# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
16+
# in your Git repository. Update and uncomment the following line accordingly.
17+
# <django-project-name>/staticfiles/
18+
19+
### Django.Python Stack ###
20+
# Byte-compiled / optimized / DLL files
21+
*.py[cod]
22+
*$py.class
23+
24+
# C extensions
25+
*.so
26+
27+
# Distribution / packaging
28+
.Python
29+
build/
30+
develop-eggs/
31+
dist/
32+
downloads/
33+
eggs/
34+
.eggs/
35+
lib/
36+
lib64/
37+
parts/
38+
sdist/
39+
var/
40+
wheels/
41+
share/python-wheels/
42+
*.egg-info/
43+
.installed.cfg
44+
*.egg
45+
MANIFEST
46+
47+
# PyInstaller
48+
# Usually these files are written by a python script from a template
49+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
50+
*.manifest
51+
*.spec
52+
53+
# Installer logs
54+
pip-log.txt
55+
pip-delete-this-directory.txt
56+
57+
# Unit test / coverage reports
58+
htmlcov/
59+
.tox/
60+
.nox/
61+
.coverage
62+
.coverage.*
63+
.cache
64+
nosetests.xml
65+
coverage.xml
66+
*.cover
67+
*.py,cover
68+
.hypothesis/
69+
.pytest_cache/
70+
cover/
71+
72+
# Translations
73+
*.mo
74+
75+
# Django stuff:
76+
77+
# Flask stuff:
78+
instance/
79+
.webassets-cache
80+
81+
# Scrapy stuff:
82+
.scrapy
83+
84+
# Sphinx documentation
85+
docs/_build/
86+
87+
# PyBuilder
88+
.pybuilder/
89+
target/
90+
91+
# Jupyter Notebook
92+
.ipynb_checkpoints
93+
94+
# IPython
95+
profile_default/
96+
ipython_config.py
97+
98+
# pyenv
99+
# For a library or package, you might want to ignore these files since the code is
100+
# intended to run in multiple environments; otherwise, check them in:
101+
# .python-version
102+
103+
# pipenv
104+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
105+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
106+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
107+
# install all needed dependencies.
108+
#Pipfile.lock
109+
110+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
111+
__pypackages__/
112+
113+
# Celery stuff
114+
celerybeat-schedule
115+
celerybeat.pid
116+
117+
# SageMath parsed files
118+
*.sage.py
119+
120+
# Environments
121+
.env
122+
.venv
123+
env/
124+
venv/
125+
ENV/
126+
env.bak/
127+
venv.bak/
128+
129+
# Spyder project settings
130+
.spyderproject
131+
.spyproject
132+
133+
# Rope project settings
134+
.ropeproject
135+
136+
# mkdocs documentation
137+
/site
138+
139+
# mypy
140+
.mypy_cache/
141+
.dmypy.json
142+
dmypy.json
143+
144+
# Pyre type checker
145+
.pyre/
146+
147+
# pytype static type analyzer
148+
.pytype/
149+
150+
# Cython debug symbols
151+
cython_debug/
152+
153+
### PyCharm ###
154+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
155+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
156+
157+
# User-specific stuff
158+
.idea
159+
.idea/.gitignore
160+
.idea/**/workspace.xml
161+
.idea/**/tasks.xml
162+
.idea/**/usage.statistics.xml
163+
.idea/**/dictionaries
164+
.idea/**/shelf
165+
166+
# AWS User-specific
167+
.idea/**/aws.xml
168+
169+
# Generated files
170+
.idea/**/contentModel.xml
171+
172+
# Sensitive or high-churn files
173+
.idea/**/dataSources/
174+
.idea/**/dataSources.ids
175+
.idea/**/dataSources.local.xml
176+
.idea/**/sqlDataSources.xml
177+
.idea/**/dynamic.xml
178+
.idea/**/uiDesigner.xml
179+
.idea/**/dbnavigator.xml
180+
181+
# Gradle
182+
.idea/**/gradle.xml
183+
.idea/**/libraries
184+
185+
# Gradle and Maven with auto-import
186+
# When using Gradle or Maven with auto-import, you should exclude module files,
187+
# since they will be recreated, and may cause churn. Uncomment if using
188+
# auto-import.
189+
# .idea/artifacts
190+
# .idea/compiler.xml
191+
# .idea/jarRepositories.xml
192+
# .idea/modules.xml
193+
# .idea/*.iml
194+
# .idea/modules
195+
# *.iml
196+
# *.ipr
197+
198+
# CMake
199+
cmake-build-*/
200+
201+
# Mongo Explorer plugin
202+
.idea/**/mongoSettings.xml
203+
204+
# File-based project format
205+
*.iws
206+
207+
# IntelliJ
208+
out/
209+
210+
# mpeltonen/sbt-idea plugin
211+
.idea_modules/
212+
213+
# JIRA plugin
214+
atlassian-ide-plugin.xml
215+
216+
# Cursive Clojure plugin
217+
.idea/replstate.xml
218+
219+
# Crashlytics plugin (for Android Studio and IntelliJ)
220+
com_crashlytics_export_strings.xml
221+
crashlytics.properties
222+
crashlytics-build.properties
223+
fabric.properties
224+
225+
# Editor-based Rest Client
226+
.idea/httpRequests
227+
228+
# Android studio 3.1+ serialized cache file
229+
.idea/caches/build_file_checksums.ser
230+
231+
### PyCharm Patch ###
232+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
233+
234+
# *.iml
235+
# modules.xml
236+
# .idea/misc.xml
237+
# *.ipr
238+
239+
# Sonarlint plugin
240+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
241+
.idea/**/sonarlint/
242+
243+
# SonarQube Plugin
244+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
245+
.idea/**/sonarIssues.xml
246+
247+
# Markdown Navigator plugin
248+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
249+
.idea/**/markdown-navigator.xml
250+
.idea/**/markdown-navigator-enh.xml
251+
.idea/**/markdown-navigator/
252+
253+
# Cache file creation bug
254+
# See https://youtrack.jetbrains.com/issue/JBR-2257
255+
.idea/$CACHE_FILE$
256+
257+
# CodeStream plugin
258+
# https://plugins.jetbrains.com/plugin/12206-codestream
259+
.idea/codestream.xml
260+
261+
### Python ###
262+
# Byte-compiled / optimized / DLL files
263+
264+
# C extensions
265+
266+
# Distribution / packaging
267+
268+
# PyInstaller
269+
# Usually these files are written by a python script from a template
270+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
271+
272+
# Installer logs
273+
274+
# Unit test / coverage reports
275+
276+
# Translations
277+
278+
# Django stuff:
279+
280+
# Flask stuff:
281+
282+
# Scrapy stuff:
283+
284+
# Sphinx documentation
285+
286+
# PyBuilder
287+
288+
# Jupyter Notebook
289+
290+
# IPython
291+
292+
# pyenv
293+
# For a library or package, you might want to ignore these files since the code is
294+
# intended to run in multiple environments; otherwise, check them in:
295+
# .python-version
296+
297+
# pipenv
298+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
299+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
300+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
301+
# install all needed dependencies.
302+
303+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
304+
305+
# Celery stuff
306+
307+
# SageMath parsed files
308+
309+
# Environments
310+
311+
# Spyder project settings
312+
313+
# Rope project settings
314+
315+
# mkdocs documentation
316+
317+
# mypy
318+
319+
# Pyre type checker
320+
321+
# pytype static type analyzer
322+
323+
# Cython debug symbols
324+
325+
# End of https://www.toptal.com/developers/gitignore/api/python,django,pycharm
326+
{"mode":"full","isActive":false}

‎config/__init__.py

Whitespace-only changes.

‎config/asgi.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
ASGI config for config project.
3+
4+
It exposes the ASGI callable as a module-level variable named ``application``.
5+
6+
For more information on this file, see
7+
https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/
8+
"""
9+
10+
import os
11+
12+
from django.core.asgi import get_asgi_application
13+
14+
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
15+
16+
application = get_asgi_application()

0 commit comments

Comments
 (0)
Please sign in to comment.