Skip to content

Latest commit

 

History

History
32 lines (31 loc) · 588 Bytes

README.md

File metadata and controls

32 lines (31 loc) · 588 Bytes

Starting the server

  • Clone the repository
  • run
    npm install
  • Run the following
    touch .env
  • Open the .env file and enter the MongoDB URL (Soumyajyoti has it)
    URL="mongodb+srv://username:password@mongoatlascluster"
    
  • Run locally
    npm run serve
  • For contribution
    git checkout -b dev
    npm run format
    npm run serve
  • Push the code after contribution
    npm run format
    git add .
    git commit -m "new changes"
    git push