https://github.com/roy-radhakanta/habbit-tracker
Habbit tracker app allowes you to keep tracks for a GOAL everyday and save it's progress towards the week
https://github.com/roy-radhakanta/habbit-tracker
goal-tracking goals goals-app habit-tracker habit-tracking habittracker
Last synced: 7 months ago
JSON representation
Habbit tracker app allowes you to keep tracks for a GOAL everyday and save it's progress towards the week
- Host: GitHub
- URL: https://github.com/roy-radhakanta/habbit-tracker
- Owner: roy-radhakanta
- Created: 2023-12-21T16:27:19.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-23T17:48:51.000Z (over 1 year ago)
- Last Synced: 2025-01-17T14:14:37.306Z (9 months ago)
- Topics: goal-tracking, goals, goals-app, habit-tracker, habit-tracking, habittracker
- Language: JavaScript
- Homepage: https://habit-tracker-5kw8.onrender.com
- Size: 203 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README

# Habit tracker
Every day habit tracker with 7days of changable history functionality
## Folder structure
- 📁assets
- 📁css
- 📁images
- 📁js
- 📁config
- 📁controllers
- 📁models
- 📁routes
- 📁views### ⚠️Dependencies
I have used Nodemon to run project
[](https://www.npmjs.com/package/nodemon)
```node
npm install -g nodemon
```
### 🌲Environmental Variables
`PORT=3000`
`MONGO_URL=`### ⚒️How to run the project
1. Go to the project directory. Ex. in windows -> cd habittracker2. Create an .env file in the root directory and add PORT and MONGO_URL
***I have used live mongodb url***
like
```
mongodb+srv://:@..mongodb.net/?retryWrites=true&w=majority
```
then run this command on the same directory
```node
npm install
```
then run
```node
nodemon
```
or```node
npm run start
```