Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 397 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 397 Bytes

Development

Setup project

git clone https://github.com/theory-of-comedy/spelling-dee-backend.git
git checkout dev
python -m venv venv

source ./venv/bin/activate # for MacOS and Linux
.\venv\Scripts\activate # for Window

pip install -r ./requirements-dev.txt
uvicorn main:app --reload
# http://localhost:8000/docs

Enable precommit

pre-commit install