Skip to content

Commit f3ff6d2

Browse files
committed
Initial commit, MVP
0 parents  commit f3ff6d2

69 files changed

Lines changed: 51255 additions & 0 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 365 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,365 @@
1+
2+
# Created by https://www.gitignore.io/api/git,vim,sass,linux,macos,emacs,python,windows,pycharm,textmate,sublimetext,visualstudiocode
3+
4+
### Emacs ###
5+
# -*- mode: gitignore; -*-
6+
*~
7+
\#*\#
8+
/.emacs.desktop
9+
/.emacs.desktop.lock
10+
*.elc
11+
auto-save-list
12+
tramp
13+
.\#*
14+
15+
# Org-mode
16+
.org-id-locations
17+
*_archive
18+
19+
# flymake-mode
20+
*_flymake.*
21+
22+
# eshell files
23+
/eshell/history
24+
/eshell/lastdir
25+
26+
# elpa packages
27+
/elpa/
28+
29+
# reftex files
30+
*.rel
31+
32+
# AUCTeX auto folder
33+
/auto/
34+
35+
# cask packages
36+
.cask/
37+
dist/
38+
39+
# Flycheck
40+
flycheck_*.el
41+
42+
# server auth directory
43+
/server/
44+
45+
# projectiles files
46+
.projectile
47+
projectile-bookmarks.eld
48+
49+
# directory configuration
50+
.dir-locals.el
51+
52+
# saveplace
53+
places
54+
55+
# url cache
56+
url/cache/
57+
58+
# cedet
59+
ede-projects.el
60+
61+
# smex
62+
smex-items
63+
64+
# company-statistics
65+
company-statistics-cache.el
66+
67+
# anaconda-mode
68+
anaconda-mode/
69+
70+
### Git ###
71+
*.orig
72+
73+
### Linux ###
74+
75+
# temporary files which can be created if a process still has a handle open of a deleted file
76+
.fuse_hidden*
77+
78+
# KDE directory preferences
79+
.directory
80+
81+
# Linux trash folder which might appear on any partition or disk
82+
.Trash-*
83+
84+
# .nfs files are created when an open file is removed but is still being accessed
85+
.nfs*
86+
87+
### macOS ###
88+
*.DS_Store
89+
.AppleDouble
90+
.LSOverride
91+
92+
# Icon must end with two \r
93+
Icon
94+
95+
# Thumbnails
96+
._*
97+
98+
# Files that might appear in the root of a volume
99+
.DocumentRevisions-V100
100+
.fseventsd
101+
.Spotlight-V100
102+
.TemporaryItems
103+
.Trashes
104+
.VolumeIcon.icns
105+
.com.apple.timemachine.donotpresent
106+
107+
# Directories potentially created on remote AFP share
108+
.AppleDB
109+
.AppleDesktop
110+
Network Trash Folder
111+
Temporary Items
112+
.apdisk
113+
114+
### PyCharm ###
115+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
116+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
117+
118+
# User-specific stuff:
119+
.idea/**/workspace.xml
120+
.idea/**/tasks.xml
121+
.idea/dictionaries
122+
123+
# Sensitive or high-churn files:
124+
.idea/**/dataSources/
125+
.idea/**/dataSources.ids
126+
.idea/**/dataSources.xml
127+
.idea/**/dataSources.local.xml
128+
.idea/**/sqlDataSources.xml
129+
.idea/**/dynamic.xml
130+
.idea/**/uiDesigner.xml
131+
132+
# Gradle:
133+
.idea/**/gradle.xml
134+
.idea/**/libraries
135+
136+
# CMake
137+
cmake-build-debug/
138+
139+
# Mongo Explorer plugin:
140+
.idea/**/mongoSettings.xml
141+
142+
## File-based project format:
143+
*.iws
144+
145+
## Plugin-specific files:
146+
147+
# IntelliJ
148+
/out/
149+
150+
# mpeltonen/sbt-idea plugin
151+
.idea_modules/
152+
153+
# JIRA plugin
154+
atlassian-ide-plugin.xml
155+
156+
# Cursive Clojure plugin
157+
.idea/replstate.xml
158+
159+
# Ruby plugin and RubyMine
160+
/.rakeTasks
161+
162+
# Crashlytics plugin (for Android Studio and IntelliJ)
163+
com_crashlytics_export_strings.xml
164+
crashlytics.properties
165+
crashlytics-build.properties
166+
fabric.properties
167+
168+
### PyCharm Patch ###
169+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
170+
171+
# *.iml
172+
# modules.xml
173+
# .idea/misc.xml
174+
# *.ipr
175+
176+
# Sonarlint plugin
177+
.idea/sonarlint
178+
179+
### Python ###
180+
# Byte-compiled / optimized / DLL files
181+
__pycache__/
182+
*.py[cod]
183+
*$py.class
184+
185+
# C extensions
186+
*.so
187+
188+
# Distribution / packaging
189+
.Python
190+
build/
191+
develop-eggs/
192+
downloads/
193+
eggs/
194+
.eggs/
195+
lib/
196+
lib64/
197+
parts/
198+
sdist/
199+
var/
200+
wheels/
201+
*.egg-info/
202+
.installed.cfg
203+
*.egg
204+
205+
# PyInstaller
206+
# Usually these files are written by a python script from a template
207+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
208+
*.manifest
209+
*.spec
210+
211+
# Installer logs
212+
pip-log.txt
213+
pip-delete-this-directory.txt
214+
215+
# Unit test / coverage reports
216+
htmlcov/
217+
.tox/
218+
.coverage
219+
.coverage.*
220+
.cache
221+
nosetests.xml
222+
coverage.xml
223+
*.cover
224+
.hypothesis/
225+
226+
# Translations
227+
*.mo
228+
*.pot
229+
230+
# Django stuff:
231+
*.log
232+
local_settings.py
233+
234+
# Flask stuff:
235+
instance/
236+
.webassets-cache
237+
238+
# Scrapy stuff:
239+
.scrapy
240+
241+
# Sphinx documentation
242+
docs/_build/
243+
244+
# PyBuilder
245+
target/
246+
247+
# Jupyter Notebook
248+
.ipynb_checkpoints
249+
250+
# pyenv
251+
.python-version
252+
253+
# celery beat schedule file
254+
celerybeat-schedule
255+
256+
# SageMath parsed files
257+
*.sage.py
258+
259+
# Environments
260+
.env
261+
.venv
262+
env/
263+
venv/
264+
ENV/
265+
env.bak/
266+
venv.bak/
267+
268+
# Spyder project settings
269+
.spyderproject
270+
.spyproject
271+
272+
# Rope project settings
273+
.ropeproject
274+
275+
# mkdocs documentation
276+
/site
277+
278+
# mypy
279+
.mypy_cache/
280+
281+
### Sass ###
282+
.sass-cache/
283+
*.css.map
284+
285+
### SublimeText ###
286+
# cache files for sublime text
287+
*.tmlanguage.cache
288+
*.tmPreferences.cache
289+
*.stTheme.cache
290+
291+
# workspace files are user-specific
292+
*.sublime-workspace
293+
294+
# project files should be checked into the repository, unless a significant
295+
# proportion of contributors will probably not be using SublimeText
296+
# *.sublime-project
297+
298+
# sftp configuration file
299+
sftp-config.json
300+
301+
# Package control specific files
302+
Package Control.last-run
303+
Package Control.ca-list
304+
Package Control.ca-bundle
305+
Package Control.system-ca-bundle
306+
Package Control.cache/
307+
Package Control.ca-certs/
308+
Package Control.merged-ca-bundle
309+
Package Control.user-ca-bundle
310+
oscrypto-ca-bundle.crt
311+
bh_unicode_properties.cache
312+
313+
# Sublime-github package stores a github token in this file
314+
# https://packagecontrol.io/packages/sublime-github
315+
GitHub.sublime-settings
316+
317+
### TextMate ###
318+
*.tmproj
319+
*.tmproject
320+
tmtags
321+
322+
### Vim ###
323+
# swap
324+
[._]*.s[a-v][a-z]
325+
[._]*.sw[a-p]
326+
[._]s[a-v][a-z]
327+
[._]sw[a-p]
328+
# session
329+
Session.vim
330+
# temporary
331+
.netrwhist
332+
# auto-generated tag files
333+
tags
334+
335+
### VisualStudioCode ###
336+
.vscode/*
337+
!.vscode/settings.json
338+
!.vscode/tasks.json
339+
!.vscode/launch.json
340+
!.vscode/extensions.json
341+
.history
342+
343+
### Windows ###
344+
# Windows thumbnail cache files
345+
Thumbs.db
346+
ehthumbs.db
347+
ehthumbs_vista.db
348+
349+
# Folder config file
350+
Desktop.ini
351+
352+
# Recycle Bin used on file shares
353+
$RECYCLE.BIN/
354+
355+
# Windows Installer files
356+
*.cab
357+
*.msi
358+
*.msm
359+
*.msp
360+
361+
# Windows shortcuts
362+
*.lnk
363+
364+
# End of https://www.gitignore.io/api/git,vim,sass,linux,macos,emacs,python,windows,pycharm,textmate,sublimetext,visualstudiocode
365+

Pipfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[[source]]
2+
3+
url = "https://pypi.python.org/simple"
4+
verify_ssl = true
5+
name = "pypi"
6+
7+
8+
[dev-packages]
9+
10+
11+
12+
[packages]
13+
14+
lektor = "*"
15+
16+
17+
[requires]
18+
19+
python_version = "3.6"

0 commit comments

Comments
 (0)