This repository was made for web developers who want to start a new application with modern tools fast and easy. A complete setup with the tools below which can help you skip the initial setup and go straight to development or even MVP.
Clone the repo locally:
git clone https://github.com/flespindola/quick-setup-web.git
cd quick-setup-web
Install PHP dependencies:
composer install
Install NPM dependencies:
npm install
Build assets:
npm run build
Setup configuration:
cp .env.example .env
Generate application key:
php artisan key:generate
Start the docker container with sail.
./vendor/bin/sail up
Run database migrations:
./vendor/bin/sail artisan migrate
- First work by Fabio Espindola (@flespindola)