Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 618 Bytes

File metadata and controls

39 lines (29 loc) · 618 Bytes

Local Development

Prerequisites

  • Python 3.12+
  • Node.js 18+
  • Yarn

Backend Setup

# Setup Python environment
cd backend
python3 -m venv venv
source venv/bin/activate  # or `venv\Scripts\activate` on Windows
pip install -r requirements_versioned.txt

# Run migrations
alembic upgrade head

# Start server
python main.py  # Available at http://localhost:8000

Frontend Setup

cd frontend
yarn install
yarn dev      # Regular mode

Links

License

AGPL-3.0