Clone the repository.
git clone git@github.com:lfsc09/kdongs.git
cd kdongsInstall dependencies, creates .env file and generates APP_KEY.
composer clone-setupConfigure git hooks.
# Linux
composer configure-dev-githooks-linux
# Windows
composer configure-dev-githooks-windowsStart the development containers (Postgres, Redis, Mailpit).
docker compose -f docker/compose.local.yaml --env-file .env up -dRun database migrations and seeders.
php artisan migrate --seeddocker compose -f docker/compose.local.yaml --env-file .env down -v# Monitor connections
php artisan db:monitor --databases=pgsql
# Show database tables and views with counts
php artisan db:show --counts --views# Run all tests
php artisan test
# Run specific test class
php artisan test --filter=TestClassName
# Run specific test method
php artisan test --filter=TestClassName::testMethodNameRun Rector to automatically refactor code.
composer rectorOr on specific file or directory.
composer rector path/to/file.php