diff --git a/README.md b/README.md index e88b3b0..6e2239d 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,10 @@ # Getting Started 1. Fork the repository, clone it. -2. cd (change directory) into the project folder i.e remote_job_alert. +2. cd (change directory) into the project folder i.e Fees_tracker 3. Run `npm install` (on your terminal) to install the dependencies. 4. Run `npm start` (on your terminal) to run the project. -5. Go to your browser `localhost:5000` to view the project. +5. Go to your browser `localhost:3030` to view the project. 6. When you make your changes to the repo, push to master and create a pull request, make sure there are no merge conflicts. Fork the repository first and clone it @@ -18,13 +18,13 @@ git clone CLONE_URL Change into cloned repo and install dependencies ``` -npm install +npm install (on your terminal) ``` Start the project ``` -npm start +npm start (on your terminal) ``` Visit `http://localhost:3030` to view the project. @@ -34,3 +34,5 @@ Visit `http://localhost:3030` to view the project. — After making changes to the repo, push to master and create pull request, make sure there are no merge conflicts. — Do not merge pull request, a mentor will. +— +Upon fetch upstream to update your repo and npm start can't run, do npm intall first then try again. \ No newline at end of file diff --git a/routes/index.js b/routes/index.js deleted file mode 100644 index 3c20861..0000000 --- a/routes/index.js +++ /dev/null @@ -1,10 +0,0 @@ -const express = require('express'); -const router = express.Router(); - -// import controllers -var Test = require('../controllers/test'); - -// welcome page -router.get('/', Test.first); - -module.exports = router;