Skip to content

nus-mtp/bill-organizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CircleCI Code Climate Test Coverage

Check out our wiki for extensive information about the app! Also, visit our website here

Common problems and solutions:

The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths.

Solution

Inside commandline, at root of app folder, type:

php artisan config:clear
cp .env.example .env
php artisan key:generate

NPM compilation error

Solution

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'

Solution

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