Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 750 Bytes

README.md

File metadata and controls

29 lines (25 loc) · 750 Bytes

Task-it

Task-it a rest api with full crud functionality

Installation

Make sure you have Node and NPM installed. You will also need MangoDB database to hook up.

  1. clone repository
git clone https://github.com/Carlos460/task-it.git
  1. Install Dependencies
npm install
  1. Make and connect MangoDB database.
mongoose.connect(
  <YOUR_KEY_GOES_HERE>,
  // {Mongoose Config Stuff},
  // Some JS Code
);

note: If you want to upload your own changes to a repository, remember to use a .env file with the dotenv dependency to keep your key safe!

  1. Run script to start server with nodemon!
npm start