Welcome to the GAIA development documentation. Whether you want to contribute to the project or customize GAIA for your specific needs, this section has everything you need to get started.
Once your environment is set up, these commands will help you develop efficiently:
Copy
# Start all servicesdocker compose up# Run backend in development modecd backend && uv run uvicorn app.main:app --reload# Run frontend in development modecd frontend && pnpm dev# Run testscd backend && uv run pytestcd frontend && pnpm test
New to the codebase? Start with the development setup guide and then explore the backend and frontend architecture docs to understand how everything fits together.