diff --git a/README.md b/README.md index 0294bd7..33e7395 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,11 @@ # TextSender-API An API used to send texts messages to multiple contacts. + + +## Getting started + +Installing dependencies +`npm install` + +Running server +`node app.js` diff --git a/app.js b/app.js index 019a3f6..7dc2f2f 100644 --- a/app.js +++ b/app.js @@ -15,7 +15,7 @@ app.post('/api/v1/user/new', (req, res) => { // User routes // TODO: Not implemented -app.post('/api/v1/login'. (req, res) => { +app.post('/api/v1/login', (req, res) => { res.send('Implement'); })