Your Bluefox app is ready for development
Playground
Messages
In-memory message board — resets on restart.
Auth
Sign up or log in to view.
bluefox-auth is working —
JWT tokens, cookie sessions, and user management are all wired up.
Getting started
Create a module with an api.py file:
from fastapi import APIRouter router = APIRouter() @router.get("/") async def list_items(): return {"items": []}
Routes are auto-discovered — any */api.py
with a router is mounted at
/module_name automatically.
Remove this welcome page when you’re ready:
# Just remove welcome=True app = create_bluefox_app(settings)