Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 925 Bytes

README.md

File metadata and controls

54 lines (39 loc) · 925 Bytes

Template Buddy

An open source resume builder for hassle free experience.

Installation

Pre-requisites

  • MongoDB
  • NodeJS >= v16.0.0
  • MongoDB Compass (optional, to view the database)
  • Postman (optional, to test the API)

Steps

For macOS:

  1. Start Mongo daemon:
user@programmer~:$ mongod --config <path-to-mongo-config>
  1. Start the backend server:
user@programmer~:$ cd backend
user@programmer~:$ npm start
  1. Start the frontend:
user@programmer~:$ cd frontend
user@programmer~:$ npm start

For Windows (Use CMD Prompt in Administrator mode) :

  1. Start Mongo daemon:
user@programmer~:$ <mongo_installation_path>/bin/mongod.exe --dbpath=<db_path>
  1. Start the backend server:
user@programmer~:$ cd backend
user@programmer~:$ npm start
  1. Start the frontend:
user@programmer~:$ cd frontend
user@programmer~:$ npm start