Skip to content

Commit 9b33816

Browse files
committed
move docs to readthedocs
1 parent d8e8e72 commit 9b33816

File tree

11 files changed

+1086
-240
lines changed

11 files changed

+1086
-240
lines changed

.gitignore

Lines changed: 154 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,156 @@
1+
2+
# Created by https://www.gitignore.io/api/django,intellij+iml,python
3+
4+
### Django ###
5+
*.log
6+
*.pot
17
*.pyc
2-
/build/
3-
/dist/
4-
/django_geojson.egg-info/
5-
.tox
6-
# Intellij
7-
.idea/
8-
*.iml
8+
__pycache__/
9+
local_settings.py
10+
db.sqlite3
11+
media
12+
13+
### Intellij+iml ###
14+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
15+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
16+
17+
# User-specific stuff:
18+
.idea/**/workspace.xml
19+
.idea/**/tasks.xml
20+
21+
# Sensitive or high-churn files:
22+
.idea/**/dataSources/
23+
.idea/**/dataSources.ids
24+
.idea/**/dataSources.xml
25+
.idea/**/dataSources.local.xml
26+
.idea/**/sqlDataSources.xml
27+
.idea/**/dynamic.xml
28+
.idea/**/uiDesigner.xml
29+
30+
# Gradle:
31+
.idea/**/gradle.xml
32+
.idea/**/libraries
33+
34+
# Mongo Explorer plugin:
35+
.idea/**/mongoSettings.xml
36+
37+
## File-based project format:
938
*.iws
39+
40+
## Plugin-specific files:
41+
42+
# IntelliJ
43+
/out/
44+
45+
# mpeltonen/sbt-idea plugin
46+
.idea_modules/
47+
48+
# JIRA plugin
49+
atlassian-ide-plugin.xml
50+
51+
# Crashlytics plugin (for Android Studio and IntelliJ)
52+
com_crashlytics_export_strings.xml
53+
crashlytics.properties
54+
crashlytics-build.properties
55+
fabric.properties
56+
57+
### Intellij+iml Patch ###
58+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
59+
60+
*.iml
61+
modules.xml
62+
.idea/misc.xml
63+
*.ipr
64+
65+
### Python ###
66+
# Byte-compiled / optimized / DLL files
67+
*.py[cod]
68+
*$py.class
69+
70+
# C extensions
71+
*.so
72+
73+
# Distribution / packaging
74+
.Python
75+
env/
76+
build/
77+
develop-eggs/
78+
dist/
79+
downloads/
80+
eggs/
81+
.eggs/
82+
lib/
83+
lib64/
84+
parts/
85+
sdist/
86+
var/
87+
wheels/
88+
*.egg-info/
89+
.installed.cfg
90+
*.egg
91+
92+
# PyInstaller
93+
# Usually these files are written by a python script from a template
94+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
95+
*.manifest
96+
*.spec
97+
98+
# Installer logs
99+
pip-log.txt
100+
pip-delete-this-directory.txt
101+
102+
# Unit test / coverage reports
103+
htmlcov/
104+
.tox/
105+
.coverage
106+
.coverage.*
107+
.cache
108+
nosetests.xml
109+
coverage.xml
110+
*,cover
111+
.hypothesis/
112+
113+
# Translations
114+
*.mo
115+
116+
# Django stuff:
117+
118+
# Flask stuff:
119+
instance/
120+
.webassets-cache
121+
122+
# Scrapy stuff:
123+
.scrapy
124+
125+
# Sphinx documentation
126+
docs/_build/
127+
128+
# PyBuilder
129+
target/
130+
131+
# Jupyter Notebook
132+
.ipynb_checkpoints
133+
134+
# pyenv
135+
.python-version
136+
137+
# celery beat schedule file
138+
celerybeat-schedule
139+
140+
# dotenv
141+
.env
142+
143+
# virtualenv
144+
.venv
145+
venv/
146+
ENV/
147+
148+
# Spyder project settings
149+
.spyderproject
150+
151+
# Rope project settings
152+
.ropeproject
153+
154+
# End of https://www.gitignore.io/api/django,intellij+iml,python
155+
156+
/.idea

0 commit comments

Comments
 (0)