Loading...
Loading...
Sets up and starts the AI Tutor project locally (environment file, dependencies, database, migrations, and dev server). Use when standing up the AI Tutor for the first time on a new machine or after a fresh clone. This is sample-project specific; adapt it when you install the AI Layer into your own project.
npx skill4agent add coleam00/skills setup-ai-tutorcp .env.example .envuv syncdocker-compose up -d dbuv run alembic upgrade headuv run uvicorn app.main:app --reload --port 8123# Test API health
curl -s http://localhost:8123/health
# Test database connection
curl -s http://localhost:8123/health/db{"status":"healthy"}# Stop dev server: Ctrl+C
# Stop database: docker-compose downdocker-composedocker-compose.yml.env.example