Getting Started
Quick Start
We at Mergeloop have created a GitHub Template repository that you can use to get started even faster. It includes all the necessary configurations and settings to get you up and running in no time.
Click the "Use Template" button on the GitHub repository page to create a new repository based on the template. Once you have created the repository, clone it to your local machine and run the following commands to get started:
1php -r "file_exists('.env') || copy('.env.example', '.env');"2php artisan key:generate3php -r "file_exists('database/database.sqlite') || touch('database/database.sqlite');"4php artisan migrate:refresh --seed