Goto the root of directory then
$ npm install
For db other than sqlite3 (i.e. postgres, mysql)
$ npm run sequelize -- db:create
Then
$ npm run sequelize -- db:migrate
To run the site
$ npm run dev or $ npm start
It should be appeared on http://localhost:3000/
In ".sequelizerc" change From:
'config': path.resolve('config', 'config.json')
TO:
'config': path.resolve('config', 'config_sqlite3.json')
expressjs: Backend server
ejs: Embedded Javascript -- Template view rendering engine
passportjs: Authentication Middleware
Sequelize : Object-Relational Mapping for SQL database
Sequelize-cli: commandline tools for sequelize