-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
33 lines (29 loc) · 813 Bytes
/
Pipfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[[source]]
name = "pypi"
url = "https://pypi.python.org/simple"
verify_ssl = true
[requires]
python_full_version = "3.6.5"
[scripts]
client = "bash -c 'cd client && yarn start'"
server = "env FLASK_APP=server:app FLASK_ENV=development flask run"
deploy-client = "bash -c 'cd client && yarn deploy'"
deploy-server = "git push heroku +master"
import-images = "env FLASK_APP=server:app FLASK_ENV=development flask import-images"
make-small-thumbnails = "env FLASK_APP=server:app FLASK_ENV=development flask make-small-thumbnails"
update-server = "heroku run flask read-events --count 200"
[packages]
Flask = "*"
flask-restplus = "*"
matrix_client = "*"
mongoengine = "*"
gunicorn = "*"
flask-cors = "*"
lxml = "*"
cssselect = "*"
pandas = "*"
request = "*"
pillow = "*"
boto3 = "*"
requests = "*"
[dev-packages]