bluefox-cloud is running

Your Bluefox app is ready for development

App Database — connected Redis — not configured

Playground

Messages

In-memory message board — resets on restart.

  • No messages yet — try sending one!

Auth

Protected content

Sign up or log in to view.

You’re authenticated. 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:

items/api.py
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:

main.py
# Just remove welcome=True
app = create_bluefox_app(settings)