#Victorina Backend
TBD
- php ^7.3
- composer
- node 14
- npm 6
- Pusher
- Clone this repository.
git clone ...
- Go to folder application.
- Create environment file.
cp .env.example .env
- Make sure there are important variables in the .env file.
required
PUSHER_APP_ID= PUSHER_APP_KEY= PUSHER_APP_SECRET= PUSHER_APP_CLUSTER=
- Add database connection credentials parameters in the .env file.
- Install framework dependencies.
php composer.phar install
- If necessary, generate a new one app key.
php artisan key:generate
- Run database migration command.
php artisan migrate
- Run command to seed database.
php artisan db:seed
- Create the encryption keys needed to generate secure access tokens.
php artisan passport:install
- Create the symbolic link.
php artisan storage:link
- Install package dependencies.
npm i
- Build application.
npm run dev