- Install
python 3.10
- Create virtual environment
- Install poetry and the dependencies
# Navigate to this directory
cd backend
# Create a virtual environment
python3 -m venv venv
source venv/bin/activate
# Install Poetry
pip3 install poetry
# Install all dependencies and dev dependencies
poetry install
alembic upgrade head
uvicorn src.app.app:app
- Install node
- Install yarn
npm install --global yarn
cd frontend
yarn install
yarn start
yarn install --dev
yarn test