10 lines
149 B
Bash
10 lines
149 B
Bash
|
if [ ! -d "./venv" ]; then
|
||
|
python3 -m venv ./venv
|
||
|
fi
|
||
|
|
||
|
source ./venv/bin/activate
|
||
|
|
||
|
pip install flask pydantic
|
||
|
|
||
|
flask --app main run --reload --debug
|