|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
|
|
|
2
|
+# Created by https://www.toptal.com/developers/gitignore/api/django
|
|
|
3
|
+# Edit at https://www.toptal.com/developers/gitignore?templates=django
|
|
|
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
|
+# End of https://www.toptal.com/developers/gitignore/api/django
|
|
|
154
|
+data
|
|
|
155
|
+media
|