The back-end Laravel application that supports the Peak ecosystem.
- Apache or Nginx
- PHP ^7.4
- MySQL ^5.7
- Clone the repository.
- Run
composer install
in the root directory. - Copy
.env.example
into a new.env
file, update as necessary. - Run
php artisan key:generate
, - Run
php artisan migrate
to install the database structure. - Run
php artisan passport:keys
to generate the encryption keys required by Laravel Passport.
- Clone the repository.
- Run
composer install
in the root directory. - Copy
.env.example
into a new.env
file. - Run
php artisan key:generate
- Start Laravel Sail with
./vendor/bin/sail up
. - Run
./vendor/bin/sail artisan migrate
to install the database structure. - Run
./vendor/bin/sail artisan passport:keys
to generate the encryption keys required by Laravel Passport.