Nadoo AI is designed to run on your own infrastructure. Whether you need a local development environment, a team demo, or a production deployment, there is a Docker Compose configuration ready for your scenario.
The fastest way to get started is with the local development setup:
# Clone the repositorygit clone https://github.com/nadoo-ai/nadoo-ai.gitcd nadoo-ai# Start Postgres and Redisdocker-compose -f infrastructure/docker-compose.local.yml up -d# Start the backendcd packages/backendpip install -r requirements.txtalembic upgrade headuvicorn src.main:app --reload --port 8000# In another terminal, start the frontendcd packages/frontendnpm installnpm run dev
For production deployments, we recommend using docker-compose.all.yml with proper TLS certificates, secret management, and monitoring. See the production deployment guide for details.