Skip to content

Commit 24d2ecb

Browse files
committed
first commit
0 parents  commit 24d2ecb

File tree

8 files changed

+505
-0
lines changed

8 files changed

+505
-0
lines changed

.gitignore

Lines changed: 305 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,305 @@
1+
2+
/static
3+
/media
4+
.idea
5+
.idea/
6+
7+
# Created by https://www.gitignore.io/api/macos,django,python,pycharm,virtualenv
8+
# Edit at https://www.gitignore.io/?templates=macos,django,python,pycharm,virtualenv
9+
10+
### Django ###
11+
*.log
12+
*.pot
13+
*.pyc
14+
__pycache__/
15+
local_settings.py
16+
db.sqlite3
17+
db.sqlite3-journal
18+
media
19+
20+
# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
21+
# in your Git repository. Update and uncomment the following line accordingly.
22+
# <django-project-name>/staticfiles/
23+
24+
### Django.Python Stack ###
25+
# Byte-compiled / optimized / DLL files
26+
*.py[cod]
27+
*$py.class
28+
29+
# C extensions
30+
*.so
31+
32+
# Distribution / packaging
33+
.Python
34+
build/
35+
develop-eggs/
36+
dist/
37+
downloads/
38+
eggs/
39+
.eggs/
40+
lib/
41+
lib64/
42+
parts/
43+
sdist/
44+
var/
45+
wheels/
46+
pip-wheel-metadata/
47+
share/python-wheels/
48+
*.egg-info/
49+
.installed.cfg
50+
*.egg
51+
MANIFEST
52+
53+
# PyInstaller
54+
# Usually these files are written by a python script from a template
55+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
56+
*.manifest
57+
*.spec
58+
59+
# Installer logs
60+
pip-log.txt
61+
pip-delete-this-directory.txt
62+
63+
# Unit test / coverage reports
64+
htmlcov/
65+
.tox/
66+
.nox/
67+
.coverage
68+
.coverage.*
69+
.cache
70+
nosetests.xml
71+
coverage.xml
72+
*.cover
73+
.hypothesis/
74+
.pytest_cache/
75+
76+
# Translations
77+
*.mo
78+
79+
# Scrapy stuff:
80+
.scrapy
81+
82+
# Sphinx documentation
83+
docs/_build/
84+
85+
# PyBuilder
86+
target/
87+
88+
# pyenv
89+
.python-version
90+
91+
# pipenv
92+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
93+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
94+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
95+
# install all needed dependencies.
96+
#Pipfile.lock
97+
98+
# celery beat schedule file
99+
celerybeat-schedule
100+
101+
# SageMath parsed files
102+
*.sage.py
103+
104+
# Spyder project settings
105+
.spyderproject
106+
.spyproject
107+
108+
# Rope project settings
109+
.ropeproject
110+
111+
# Mr Developer
112+
.mr.developer.cfg
113+
.project
114+
.pydevproject
115+
116+
# mkdocs documentation
117+
/site
118+
119+
# mypy
120+
.mypy_cache/
121+
.dmypy.json
122+
dmypy.json
123+
124+
# Pyre type checker
125+
.pyre/
126+
127+
### macOS ###
128+
# General
129+
.DS_Store
130+
.AppleDouble
131+
.LSOverride
132+
133+
# Icon must end with two \r
134+
Icon
135+
136+
# Thumbnails
137+
._*
138+
139+
# Files that might appear in the root of a volume
140+
.DocumentRevisions-V100
141+
.fseventsd
142+
.Spotlight-V100
143+
.TemporaryItems
144+
.Trashes
145+
.VolumeIcon.icns
146+
.com.apple.timemachine.donotpresent
147+
148+
# Directories potentially created on remote AFP share
149+
.AppleDB
150+
.AppleDesktop
151+
Network Trash Folder
152+
Temporary Items
153+
.apdisk
154+
155+
### PyCharm ###
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+
159+
# User-specific stuff
160+
.idea/**/workspace.xml
161+
.idea/**/tasks.xml
162+
.idea/**/usage.statistics.xml
163+
.idea/**/dictionaries
164+
.idea/**/shelf
165+
166+
# Generated files
167+
.idea/**/contentModel.xml
168+
169+
# Sensitive or high-churn files
170+
.idea/**/dataSources/
171+
.idea/**/dataSources.ids
172+
.idea/**/dataSources.local.xml
173+
.idea/**/sqlDataSources.xml
174+
.idea/**/dynamic.xml
175+
.idea/**/uiDesigner.xml
176+
.idea/**/dbnavigator.xml
177+
178+
# Gradle
179+
.idea/**/gradle.xml
180+
.idea/**/libraries
181+
182+
# Gradle and Maven with auto-import
183+
# When using Gradle or Maven with auto-import, you should exclude module files,
184+
# since they will be recreated, and may cause churn. Uncomment if using
185+
# auto-import.
186+
# .idea/modules.xml
187+
# .idea/*.iml
188+
# .idea/modules
189+
# *.iml
190+
# *.ipr
191+
192+
# CMake
193+
cmake-build-*/
194+
195+
# Mongo Explorer plugin
196+
.idea/**/mongoSettings.xml
197+
198+
# File-based project format
199+
*.iws
200+
201+
# IntelliJ
202+
out/
203+
204+
# mpeltonen/sbt-idea plugin
205+
.idea_modules/
206+
207+
# JIRA plugin
208+
atlassian-ide-plugin.xml
209+
210+
# Cursive Clojure plugin
211+
.idea/replstate.xml
212+
213+
# Crashlytics plugin (for Android Studio and IntelliJ)
214+
com_crashlytics_export_strings.xml
215+
crashlytics.properties
216+
crashlytics-build.properties
217+
fabric.properties
218+
219+
# Editor-based Rest Client
220+
.idea/httpRequests
221+
222+
# Android studio 3.1+ serialized cache file
223+
.idea/caches/build_file_checksums.ser
224+
225+
### PyCharm Patch ###
226+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
227+
228+
# *.iml
229+
# modules.xml
230+
# .idea/misc.xml
231+
# *.ipr
232+
233+
# Sonarlint plugin
234+
.idea/**/sonarlint/
235+
236+
# SonarQube Plugin
237+
.idea/**/sonarIssues.xml
238+
239+
# Markdown Navigator plugin
240+
.idea/**/markdown-navigator.xml
241+
.idea/**/markdown-navigator/
242+
243+
### Python ###
244+
# Byte-compiled / optimized / DLL files
245+
246+
# C extensions
247+
248+
# Distribution / packaging
249+
250+
# PyInstaller
251+
# Usually these files are written by a python script from a template
252+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
253+
254+
# Installer logs
255+
256+
# Unit test / coverage reports
257+
258+
# Translations
259+
260+
# Scrapy stuff:
261+
262+
# Sphinx documentation
263+
264+
# PyBuilder
265+
266+
# pyenv
267+
268+
# pipenv
269+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
270+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
271+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
272+
# install all needed dependencies.
273+
274+
275+
276+
# celery beat schedule file
277+
278+
# SageMath parsed files
279+
280+
# Spyder project settings
281+
282+
# Rope project settings
283+
284+
# Mr Developer
285+
286+
# mkdocs documentation
287+
288+
# mypy
289+
290+
# Pyre type checker
291+
292+
### VirtualEnv ###
293+
# Virtualenv
294+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
295+
pyvenv.cfg
296+
.env
297+
.venv
298+
env/
299+
venv/
300+
ENV/
301+
env.bak/
302+
venv.bak/
303+
pip-selfcheck.json
304+
305+
# End of https://www.gitignore.io/api/macos,django,python,pycharm,virtualenv

log_share/__init__.py

Whitespace-only changes.

log_share/asgi.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""
2+
ASGI config for log_share 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.0/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', 'log_share.settings')
15+
16+
application = get_asgi_application()

0 commit comments

Comments
 (0)