You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ cd stockin/frontend
$ yarn
$ yarn test --coverage --watchAll=false
Backend
How to set up DB
$ sudo apt-get update
$ sudo apt-get install mysql-server
$ sudo apt-get install libmysqlclient-dev
$ sudo mysql -u root -p
$ CREATE DATABASE stockinDB CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
$ create user 'swpp'@'%' identified by [password];
$ grant all on stockinDB.* to 'swpp'@'%';
$ flush privileges;
It must be modified with the [password] in the setting.py