diff --git a/README.md b/README.md index c1f380b..a8f4e2d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ This is the repository for the backend of the Habit Tracker application, a Node.js API for tracking daily habits. This API was developed using Node.js and PostgreSQL as the database, and it follows the principles of Hexagon Architecture. -## 🚀 Instalation +## Instalation To install the project dependencies, run the following command: @@ -11,6 +11,14 @@ To install the project dependencies, run the following command: npm install ``` +## 🚀 Running the application + +``` +npm start +``` + +The server will run on http://localhost:8000 + Additionally, you need to create a PostgreSQL database named "habit-tracker" before starting the server. ## Available Routes diff --git a/habits-document.json b/habits-document.json index f0219df..b902a6a 100644 --- a/habits-document.json +++ b/habits-document.json @@ -1,7 +1,7 @@ { "swagger": "2.0", "info": { - "version": "1.1.6", + "version": "1.1.7", "title": "Habit Tracker API", "description": "Api to manage habits" }, diff --git a/package.json b/package.json index 11d7756..9ec733c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "habit-tracker-backend", - "version": "1.1.6", + "version": "1.1.7", "description": "", "main": "index.js", "scripts": {