| name | local-dev |
| description | Local development environment setup and commands. Use when helping with dev server, Docker, or local testing. |
Local Development
Quick Start
./scripts/dev-runner.sh --restart
./scripts/dev-runner.sh --start
./scripts/dev-runner.sh --stop
./scripts/dev-runner.sh --verify
Modes
| Mode | Command | Frontend | Use When |
|---|
| Standard | --restart | localhost:5174 | Frontend work, full-stack |
| BE-only | --be-only-restart | localhost:5173 | Backend-focused, faster rebuilds |
URLs
Build Commands
./scripts/dev-runner.sh --build-be
./scripts/dev-runner.sh --build-fe
./scripts/dev-runner.sh --lint-be
./scripts/dev-runner.sh --lint-fe
./scripts/dev-runner.sh --migrate
Logs
tail -f /tmp/opik-backend.log
tail -f /tmp/opik-frontend.log
docker logs -f opik-frontend-1
SDK Config
export OPIK_URL_OVERRIDE='http://localhost:8080'
export OPIK_WORKSPACE='default'
Troubleshooting
Won't start:
./scripts/dev-runner.sh --verify
lsof -i :8080
./scripts/dev-runner.sh --stop && ./scripts/dev-runner.sh --restart
Build fails:
cd apps/opik-backend && mvn clean install -DskipTests
cd apps/opik-frontend && rm -rf node_modules && npm install
Database issues:
./scripts/dev-runner.sh --stop
./opik.sh --clean
./scripts/dev-runner.sh --restart