Skip to content

INSTALL AND RUN

KT edited this page Jun 26, 2018 · 13 revisions

Installation

Job Portal App

  1. Clone https://github.com/karantyagi/job-portal
  2. Go to the cloned repository and run npm install
  3. Run ng serve

Server

  1. Clone https://github.com/karantyagi/job-portal-node-server
  2. Go to the cloned repository and run npm install
  3. Connect to mongodb sever running locally. (mongodb://127.0.0.1:27017)
  4. Run node server.js

Database

Create admin

In mongo shell,

  1. Run use job-portal
  2. db.createCollection('User')
  3. db.User.insert({username:'admin',password:'admin',role:'Admin'})

Clone this wiki locally