# DevOps

## Local development
- Backend: `php artisan serve`
- Frontend: `npm run dev`
- Combined convenience: `composer dev`

## Build and test
- `npm run build`
- `php artisan test`

## Environment/config touchpoints
- App and DB: `.env`, `config/database.php`, `config/app.php`
- Bunny integration: `config/bunny.php`
- Device policy: `config/cepi.php`

## Deployment notes
Refer to existing phase docs under `docs/dev/` (notably deployment and payment/video phases) and keep migrations/config cache steps explicit in release runbooks.
