Skip to main content

Getting Started: From Zero to Running

What you must do in this starter kit

  1. Write PRD/feature spec first.
  2. Implement feature based on PRD scope.
  3. Ask AI agent to update required docs (OpenAPI, DBML, Business Flow), then review the result.
  4. Run quality gate.
  5. 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.

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