Make a copy of the .env.example
file and name it as .env
in the same directory. Remember to fill in the necessary fields/api keys
python3 -m venv venv
source venv/bin/activate
venv\Scripts\activate
pip install -r requirements.txt
uvicorn app.main:app --reload --host 0.0.0.0 --port 8081
pip freeze > requirements.txt
Make sure that there is a __init__.py
file at every level of the test cases
Run the following command at the root of the repository
pytest
Run the following command at the root of the repository
black .
export PYTHONPATH="/Users/{MAC_NAME}/brain:$PYTHONPATH"