Getting Started: From Zero to Running
What you must do in this starter kit
- Write PRD/feature spec first.
- Implement feature based on PRD scope.
- Ask AI agent to update required docs (OpenAPI, DBML, Business Flow), then review the result.
- Run quality gate.
- Submit result + remaining risks.
Expected outcome
- Faster feature delivery without messy codebase.
- Team can move consistently from PRD to implementation.
- All changes are traceable and reviewable.
Easiest option: Docker Compose (recommended)
cd projects/vibe-starterkit
docker compose up -d --build
Access:
- App:
http://localhost:8000 - Admin:
http://localhost:8000/admin/login - Swagger:
http://localhost:8000/docs/v1 - Docusaurus:
http://localhost:3000
Stop:
docker compose down
Manual option
cd projects/vibe-starterkit
cp .env.example .env
composer install
php artisan key:generate
php artisan migrate --seed
php artisan starter:quality-gate
php artisan serve --host=0.0.0.0 --port=8000
Quick commands
php artisan starter:quality-gate
php artisan starter:docs-guard
php artisan starter:docs-regenerate v1
php artisan starter:smoke-test