Skip to content

Commit 6ffc686

Browse files
lxawlxaw
lxaw
authored and
lxaw
committed
fix
0 parents  commit 6ffc686

File tree

849 files changed

+95985
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

849 files changed

+95985
-0
lines changed

.gitignore

Lines changed: 219 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,219 @@
1+
# see: https://www.toptal.com/developers/gitignore
2+
3+
node_modules
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+
main.js
16+
17+
### React
18+
node_modules/
19+
.cache/
20+
dist/
21+
.env
22+
.DS_Store
23+
coverage/
24+
.vscode/
25+
26+
# Created by https://www.toptal.com/developers/gitignore/api/react,django
27+
# Edit at https://www.toptal.com/developers/gitignore?templates=react,django
28+
29+
### Django ###
30+
*.log
31+
*.pot
32+
*.pyc
33+
__pycache__/
34+
local_settings.py
35+
db.sqlite3
36+
db.sqlite3-journal
37+
#media
38+
39+
# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
40+
# in your Git repository. Update and uncomment the following line accordingly.
41+
# <django-project-name>/staticfiles/
42+
43+
### Django.Python Stack ###
44+
# Byte-compiled / optimized / DLL files
45+
*.py[cod]
46+
*$py.class
47+
48+
# C extensions
49+
*.so
50+
51+
# Distribution / packaging
52+
.Python
53+
build/
54+
develop-eggs/
55+
dist/
56+
downloads/
57+
eggs/
58+
.eggs/
59+
lib/
60+
lib64/
61+
parts/
62+
sdist/
63+
var/
64+
wheels/
65+
share/python-wheels/
66+
*.egg-info/
67+
.installed.cfg
68+
*.egg
69+
MANIFEST
70+
71+
# PyInstaller
72+
# Usually these files are written by a python script from a template
73+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
74+
*.manifest
75+
*.spec
76+
77+
# Installer logs
78+
pip-log.txt
79+
pip-delete-this-directory.txt
80+
81+
# Unit test / coverage reports
82+
htmlcov/
83+
.tox/
84+
.nox/
85+
.coverage
86+
.coverage.*
87+
.cache
88+
nosetests.xml
89+
coverage.xml
90+
*.cover
91+
*.py,cover
92+
.hypothesis/
93+
.pytest_cache/
94+
cover/
95+
96+
# Translations
97+
*.mo
98+
99+
# Django stuff:
100+
101+
# Flask stuff:
102+
instance/
103+
.webassets-cache
104+
105+
# Scrapy stuff:
106+
.scrapy
107+
108+
# Sphinx documentation
109+
docs/_build/
110+
111+
# PyBuilder
112+
.pybuilder/
113+
target/
114+
115+
# Jupyter Notebook
116+
.ipynb_checkpoints
117+
118+
# IPython
119+
profile_default/
120+
ipython_config.py
121+
122+
# pyenv
123+
# For a library or package, you might want to ignore these files since the code is
124+
# intended to run in multiple environments; otherwise, check them in:
125+
# .python-version
126+
127+
# pipenv
128+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
129+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
130+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
131+
# install all needed dependencies.
132+
#Pipfile.lock
133+
134+
# poetry
135+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
136+
# This is especially recommended for binary packages to ensure reproducibility, and is more
137+
# commonly ignored for libraries.
138+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
139+
#poetry.lock
140+
141+
# pdm
142+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
143+
#pdm.lock
144+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
145+
# in version control.
146+
# https://pdm.fming.dev/#use-with-ide
147+
.pdm.toml
148+
149+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
150+
__pypackages__/
151+
152+
# Celery stuff
153+
celerybeat-schedule
154+
celerybeat.pid
155+
156+
# SageMath parsed files
157+
*.sage.py
158+
159+
# Environments
160+
.env
161+
.venv
162+
env/
163+
venv/
164+
ENV/
165+
env.bak/
166+
venv.bak/
167+
168+
# Spyder project settings
169+
.spyderproject
170+
.spyproject
171+
172+
# Rope project settings
173+
.ropeproject
174+
175+
# mkdocs documentation
176+
/site
177+
178+
# mypy
179+
.mypy_cache/
180+
.dmypy.json
181+
dmypy.json
182+
183+
# Pyre type checker
184+
.pyre/
185+
186+
# pytype static type analyzer
187+
.pytype/
188+
189+
# Cython debug symbols
190+
cython_debug/
191+
192+
# PyCharm
193+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
194+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
195+
# and can be added to the global gitignore or merged into this file. For a more nuclear
196+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
197+
#.idea/
198+
199+
### react ###
200+
.DS_*
201+
logs
202+
**/*.backup.*
203+
**/*.back.*
204+
205+
node_modules
206+
bower_components
207+
208+
*.sublime*
209+
210+
psd
211+
thumb
212+
sketch
213+
214+
# End of https://www.toptal.com/developers/gitignore/api/react,django
215+
216+
217+
# Files
218+
static/users/*
219+
*.csv

Pipfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
env = "*"
8+
django = "*"
9+
djangorestframework = "*"
10+
markdown = "*"
11+
django-filter = "*"
12+
django-rest-knox = "*"
13+
gunicorn = "*"
14+
whitenoise = "*"
15+
email-validator = "*"
16+
17+
[dev-packages]
18+
19+
[requires]
20+
python_version = "3.10"

0 commit comments

Comments
 (0)