Check out our wiki for extensive information about the app! Also, visit our website here
The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths.
Inside commandline, at root of app folder, type:
php artisan config:clear
cp .env.example .env
php artisan key:generate
NPM compilation error
1. delete node_modules folder
2. type npm install in terminal/command prompt
Error: Cannot find module 'D:\vhosts\bill-organizer\node_modules\cross-env\bin\cross-env.js'
This happens because cross-env.js package updated its build path recently,
refer to laravel-mix/laravel-mix#478
edit package.json
change all references of
node_modules/cross-env/bin/cross-env.js to
node_modules/cross-env/dist/bin/cross-env.js
if this does not resolve the problem, manually remove node_modules/cross-env and type
npm install