composer install
Installation :
npm install
Run webpack dev server :
npm run start
Run test :
npm run test
##Config
###app/config/settings.php
...
'pdo' => [
'dns' => 'mysql:dbname=my-db;host=127.0.0.1;charset=utf8',
'user' => 'root',
'password' => 'root'
],
...
...
'auth' => [
'jwtKey' => '6v9d5AN2Ka88E4dr', // <= Change here
'requestAttribute' => 'jwt',
]
...
####src/js/lib/api.js
...
axios.defaults.baseURL = 'http://example.com/api/v1/';
...