This is a the README file for thte Digital Notes app repo, which is the solo projoct of Chingu tier 3. In this app you will get to create notes, update and delete them (CRUD). I used for this app, node.js, express.js, mongodb for the backend and handlebar.js and bootstrap for the front-end.
In this README you will know how to:
- Install this repo
- adding uri of your mongodb connection
- Run this repo
- Clone this repo by going to your terminal:
git clone https://github.com/millord/digital-notes.git
- cd into the repo and inside it:
- npm install
- create a .env file in the root directory and add the following (you need to have mongodb installed):
MONGO_URI: mongodb://localhost/digital-notes
- nodemon
It will start the project on port 5000
Juan Millord