pipenv installNote: Postgresql should be runnging. See the Postgresql section.
- Option 1:
pipenv run uvicorn main:app --reload- Option 2:
pipenv shell
uvicorn main:app --reload- Option 1:
recomended
docker-compose up -d- Option2:
docker run --name postgres -e POSTGRES_PASSWORD=postgres -d postgres- Modularize all app
- Make async db
- Make async endpoints