aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-04-29 20:03:50 +0200
committerGravatar GitHub <[email protected]>2018-04-29 20:03:50 +0200
commitf57942f2575dc26c9487688ded773a0abdab5c61 (patch)
treed39039c85b361c199c7dd77e4d02fb1a14082054 /Pipfile
parent[Wiki] Dumb CSS typo (diff)
pipenv and dockerfile (#62)
pipenv and dockerfile
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile43
1 files changed, 43 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 00000000..13811259
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,43 @@
+[[source]]
+url = "https://pypi.python.org/simple"
+verify_ssl = true
+name = "pypi"
+
+[packages]
+flask = "==0.12.2"
+rethinkdb = "*"
+requests = "*"
+gevent = "*"
+"gevent-websocket" = "*"
+wsaccel = "*"
+ujson = "*"
+schema = "*"
+"flask_sockets" = "*"
+"Flask-Dance" = "*"
+"logmatic-python" = "*"
+"Flask-WTF" = "*"
+docutils = "*"
+pygments = "*"
+gunicorn = "*"
+
+[dev-packages]
+"flake8" = "*"
+"flake8-bugbear" = "*"
+"flake8-bandit" = "*"
+"flake8-import-order" = "*"
+"flake8-tidy-imports" = "*"
+"flake8-string-format" = "*"
+requests = "*"
+"Flask-Testing" = "*"
+pytest = "*"
+pytest-cov = "*"
+python-coveralls = "*"
+
+[requires]
+python_version = "3.6"
+
+[scripts]
+start = "gunicorn -w 12 -b 0.0.0.0:10012 -c gunicorn_config.py --log-level info -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker app:app"
+lint = "python -m flake8"
+test = "py.test app_test.py --cov pysite --cov-report term-missing -v"
+clean = "rm -rf __pycache__ htmlcov .coverage .pytest_cache"