- Create a new .env file using .env.example file as example. Configure your database on this file.
- Run composer install to install all PHP libs and the Laravel Framework
- Run npm install to install all Javascript libs
- Run npm run dev to compile the Javascript assets
- Run php artisan key:generate to generate the application key
- Run php artisan storage:link to create the symbolic link for file uploads on the public folder
- Run php artisan migrate:fresh --seed to generate the tables and seed the admin user (see below)
- And finally, run php artisan serve to run the application
- You can access using the user admin@admin.com, with password admin, created with the migrations using the --seed option above.
The code base is open-sourced software licensed under the MIT license.