Blame view

README.md 399 Bytes
f7563de62   Palak Handa   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  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:
  
  1. node bin/createDb.js
  2. node bin/createDefaultUser.js
  
  To run the server : 
  
  * node .