Skip to content

Latest commit

 

History

History
52 lines (18 loc) · 865 Bytes

README.md

File metadata and controls

52 lines (18 loc) · 865 Bytes
  1. Install mongo db if not already installed

    https://docs.mongodb.com/manual/installation/
    
  2. Create a data directory if not already created, for example in ubuntu

     	$ mkdir -p /data/db  
    
  3. Start Mongo DB by running following command

         mongod
    
  4. Select or Create new database

       use "databaseName"
    
  5. Clone or download this repository

  6. Inside the root folder of repository run npm install

  7. Update .env file to update mongo db connection (I kept .env out gitignore for convenience only)

  8. Once npm install finished run npm start (to start server)

  9. Navigate to root folder of repository and run

     cd client
    
  10. Inside client folder run npm install

  11. Once npm install finished run npm start (to start client)

  12. By Default you will see app is running on http://localhost:3000/