Name Last Update
bin Loading commit data...
client Loading commit data...
common Loading commit data...
node_modules Loading commit data...
server Loading commit data...
README.md Loading commit data...
package.json Loading commit data...

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:

  1. node bin/createDb.js
  2. node bin/createDefaultUser.js

To run the server :

  • node .