Skip to content

Latest commit

 

History

History
30 lines (28 loc) · 664 Bytes

README.md

File metadata and controls

30 lines (28 loc) · 664 Bytes

when-to-meet

Pre-reqs

Getting started

  • Clone the repository
  • Install dependencies
cd <project_name>
npm install
  • Configure your mongoDB server
# create the db directory
sudo mkdir -p /data/db
# give the db correct read/write permissions
sudo chmod 777 /data/db
  • Start your mongoDB server (you'll probably want another command prompt)
mongod
  • Build and run the project
npm run build
npm start

Finally, navigate to http://localhost:3000 and you should see the template being served and rendered locally!