-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
32 lines (28 loc) · 734 Bytes
/
Pipfile
File metadata and controls
32 lines (28 loc) · 734 Bytes
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
[packages]
flask = "*"
sqlalchemy = "*"
flask-sqlalchemy = "*"
flask-migrate = "==4.0.5"
flask-swagger = "==0.2.14"
psycopg2-binary = "*"
python-dotenv = "==1.0.0"
mysqlclient = "==2.2.0"
flask-cors = "==4.0.0"
gunicorn = "*"
flask-admin = "==1.6.1"
wtforms = "==3.0.1"
eralchemy2 = "*"
[requires]
python_version = "3.13"
[scripts]
start="flask run -p 3000 -h 0.0.0.0"
init="flask db init"
migrate="flask db migrate"
upgrade="flask db upgrade"
diagram = "eralchemy2 -i 'postgresql://gitpod:postgres@localhost:5432/example' -o diagram.png"
deploy="echo 'Please follow this 3 steps to deploy: https://start.4geeksacademy.com/deploy/render' "