Robot U community site frontend and backend
Find a file
2026-04-08 06:03:48 -04:00
.githooks Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
docs Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
frontend Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
scripts Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
tests Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
.env.example Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
.gitignore Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
.ruff.toml Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
app.py Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
calendar_feeds.py Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
forgejo_client.py Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
live_prototype.py Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
README.md Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
requirements.txt Initial Robot U site prototype 2026-04-08 06:03:48 -04:00
settings.py Initial Robot U site prototype 2026-04-08 06:03:48 -04:00

Robot U Site Prototype

Thin frontend layer over Forgejo for community learning content, discussions, and events.

Stack

  • FastAPI backend
  • Preact + TypeScript frontend built with Vite
  • bun for frontend tooling
  • uv + ruff for Python checks

Local Development

Backend

python3 -m venv .venv
.venv/bin/pip install -r requirements.txt
.venv/bin/python -m uvicorn app:app --reload

Optional live Forgejo configuration:

export FORGEJO_BASE_URL="https://aksal.cloud"
export FORGEJO_TOKEN="your-forgejo-api-token"
export CALENDAR_FEED_URLS="webcal://example.com/calendar.ics,https://example.com/other.ics"

Frontend

cd frontend
~/.bun/bin/bun install
~/.bun/bin/bun run dev

Quality Checks

./scripts/check_python_quality.sh
./scripts/check_frontend_quality.sh