Skip to content

Carlos460/Task-it

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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