-
Clone the repository
-
Install dependencies using
uv:cd server uv sync -
Copy the example environment file:
cp env.example .env
-
Configure your environment variables (see Configuration)
-
Start the server:
uv run uvicorn app:app --host 0.0.0.0 --port 8000
The server will be available at http://localhost:8000 (or your configured domain). You can:
- Access the API documentation at
http://localhost:8000/docs - Access the explorer UI at
http://localhost:8000/api/explorer - Check server status at
http://localhost:8000/api/server/status