generated from 4GeeksAcademy/react-flask-hello
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPipfile
59 lines (55 loc) · 1.32 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
[packages]
flask = "==1.1.2"
sqlalchemy = "==1.3.23"
flask-sqlalchemy = "==2.4.4"
flask-migrate = "==2.6.0"
flask-swagger = "==0.2.14"
psycopg2-binary = "==2.8.6"
python-dotenv = "==0.15.0"
flask-cors = "==3.0.10"
gunicorn = "==20.0.4"
cloudinary = "==1.24.0"
flask-admin = "==1.5.7"
typing-extensions = "*"
flask-jwt = "*"
pyjwt = "==2.3.0"
flask-jwt-extended = "*"
google-auth = "*"
requests = "*"
stripe = "*"
click = "==7.1.2"
faker = "*"
alembic = "==1.5.4"
certifi = "==2020.12.5"
itsdangerous = "==1.1.0"
jinja2 = "==2.11.3"
mako = "==1.1.4"
markupsafe = "==1.1.1"
python-dateutil = "==2.8.1"
python-editor = "==1.0.4"
pyyaml = "==6.0"
six = "==1.15.0"
urllib3 = "==1.26.3"
werkzeug = "==1.0.1"
wtforms = "==2.3.3"
marshmallow = "*"
flask-sendgrid = "*"
flask-mail = "*"
sendgrid = "*"
[requires]
python_version = "3.10"
[scripts]
start="flask run -p 3001 -h 0.0.0.0"
init="flask db init"
migrate="flask db migrate"
local="heroku local"
upgrade="flask db upgrade"
downgrade="flask db downgrade"
insert-test-data="flask insert-test-data"
reset_db="bash ./docs/assets/reset_migrations.bash"
deploy="echo 'Please follow this 3 steps to deploy: https://github.com/4GeeksAcademy/flask-rest-hello/blob/master/README.md#deploy-your-website-to-heroku' "