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 .