# Cross Web Website Development

default:
    @just --list

install:
    uv sync
    uv run python -m pybun install

dev:
    INERTIA_DEV=1 uv run python app.py

build:
    uv run python -m pybun run build

build-ssr:
    uv run python -m pybun run build:ssr

build-all: build build-ssr

clean:
    rm -rf frontend/dist node_modules .venv static/build __pycache__

setup: install
    @echo "Ready. Run 'just dev' to start the docs site."
