First, need to create and asset .env file in the root directory.
DATABASE_URL=
Activate virtual environment and install dependencies:
python3 -m venv .venv
source .venv/bin/activate
python3 pip install poetry
poetry install
Before start project need to init migrations:
python3 alembic upgrade head
To start project:
uvicorn app.main:app --port 8000