Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 664 Bytes

File metadata and controls

42 lines (30 loc) · 664 Bytes

Deployment

Local Docker Demo

docker compose up --build

Services:

  • Web: http://localhost:3000
  • API: http://localhost:8000
  • Postgres: localhost:5432
  • Redis: localhost:6379

Database Bootstrap

cd apps/api
python -m venv .venv
source .venv/bin/activate
pip install -e .
python -m app.api_cli

Render Deployment

This repository includes render.yaml for:

  • papersurveyor-web
  • papersurveyor-api
  • papersurveyor-worker
  • managed PostgreSQL
  • managed Redis

Recommended post-deploy step:

python -m app.api_cli

Or run the same initialization in a one-off shell on the API service.