Skip to content

Latest commit

 

History

History
65 lines (45 loc) · 997 Bytes

README.md

File metadata and controls

65 lines (45 loc) · 997 Bytes

Teams Up

codecov CodeFactor

Backend

Setup

  • 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

Setup backend database

alembic upgrade head

Setup backend server

uvicorn src.app.app:app

Frontend

Setup

  • Install node
  • Install yarn
npm install --global yarn

Setup Frontend

cd frontend
yarn install
yarn start

Run tests

yarn install --dev
yarn test