Quickly set up skeleton for your Laravel 8.x app
- PHP mess detector:
./vendor/bin/phpmd app,database,routes,tests text phpmd.xml
- PHP_CodeSniffer:
./vendor/bin/phpcs
- Auto check coding convention using Github Action
- Authentication by email & password
- Clone this project
- Run
composer install
- Run
npm install & npm run dev
- Create .env file :
cp .env.example .env
- Generate app key :
php artisan key:generate
- Migrate database:
php artisan migrate
- Seed database:
php artisan db:seed
- Open up web server:
php artisan serve
- Browse app:
localhost:8000
- Login using test account: Email:
test@haposoft.com
/ Password:123456789