README.md
Create DB in mysql using below commands:
- create database startupapp;
- CREATE USER 'startupapp'@'localhost' IDENTIFIED BY 'startupapp';
- grant all privileges on startupapp.* to startupapp@localhost identified by "startupapp";
- flush privileges;
After creating DB run below commands in project directory:
- node bin/createDb.js
- node bin/createDefaultUser.js
To run the server :
- node .