#!/bin/bash echo "Starting RBox development server..." if [ ! -f .env ]; then echo "Creating .env file from .env.example..." cp .env.example .env echo "Please edit .env with your configuration" fi echo "Starting database services..." docker compose up -d db redis echo "Waiting for database to be ready..." sleep 5 echo "Starting application..." poetry run uvicorn rbox.main:app --reload --host 0.0.0.0 --port 8000