11 lines
159 B
Bash
Executable File
11 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
|
|
python3 -m venv .env
|
|
|
|
source .env/bin/activate
|
|
|
|
pip install uvicorn fastapi pydantic pydantic-settings sqlalchemy
|
|
|
|
cd $(pwd)/src/
|
|
|
|
python3 main.py |