generated from 4GeeksAcademy/react-flask-hello-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPipfile
61 lines (57 loc) · 1.4 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
60
61
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
[packages]
flask = "==2.2.2"
sqlalchemy = "==1.4.42"
flask-sqlalchemy = "==3.0.2"
flask-migrate = "==3.1.0"
flask-swagger = "==0.2.14"
psycopg2-binary = "==2.9.4"
python-dotenv = "==0.21.0"
flask-cors = "==3.0.10"
gunicorn = "==20.1.0"
cloudinary = "==1.30.0"
flask-admin = "==1.6.0"
typing-extensions = "==4.4.0"
alembic = "==1.8.1"
certifi = "==2022.9.24"
click = "==8.1.3"
colorama = "==0.4.6"
greenlet = "==1.1.3.post0"
itsdangerous = "==2.1.2"
jinja2 = "==3.1.2"
mako = "==1.2.3"
markupsafe = "==2.1.1"
pyyaml = "==6.0"
six = "==1.16.0"
urllib3 = "==1.26.12"
werkzeug = "==2.2.2"
wtforms = "==3.0.1"
zipp = "==3.9.0"
flask-jwt-extended = "==4.4.4"
flask-wtf = "==1.1.1"
email-validator = "==1.3.1"
dnspython = "==2.3.0"
idna = "==3.4"
pyjwt = "==2.6.0"
autopep8 = "==2.0.1"
beautifulsoup4 = "==4.11.2"
charset-normalizer = "==3.0.1"
pycodestyle = "==2.10.0"
requests = "==2.28.2"
soupsieve = "==2.3.2.post1"
tomli = "==2.0.1"
[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"
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' "
importlib-metadata = "*"