Skip to content

The Wellness Tracking App monitors daily health with features for diet tracking, exercise logging, sleep monitoring, and personalized recommendations. Users set goals, track progress, and gain insights via an intuitive interface. Built with React, Node.js, and AWS CloudFront, it integrates with APIs for real-time health data and feedback.

Notifications You must be signed in to change notification settings

blackhat955/Wellness-Tracking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WellnessTrackingSystem

Basic GitHub Command which might be useful:

Configure your username and email if it asks:

Configure your GitHub username and email:

git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"

Note: Take the latest pull request from the master before push to the repository:

Initialize & pushing to your dedicated name Custom branch:

# git status and git checkout are optional and do to check what you are pushing and adding a custom branch respectively.
# git pull must be taken if there is code existing in the branch where you are pushing

git init
git add .
git status                  
git commit -m "Initial commit"
git checkout -b <custom_name_of_your_branch>    
git remote add origin <repository_url>
git push -u origin <branch_name>
git pull <branch_name>

Node.js Project Setup and Troubleshooting Guide

Running a Node.js Project

To run your Node.js project, follow these steps:

  1. Install Dependencies: Open a terminal or command prompt, navigate to the project directory, and run:

    npm install
    
    
  2. Start the Application:

    npm start
    
    
  3. If the port is already in use:

    PORT=4000 npm start

4.Pay attention to security warnings during dependency installation:

 npm audit fix

Work has been done so far:

P1

P1

P1

P1

P1

P1

P1

About

The Wellness Tracking App monitors daily health with features for diet tracking, exercise logging, sleep monitoring, and personalized recommendations. Users set goals, track progress, and gain insights via an intuitive interface. Built with React, Node.js, and AWS CloudFront, it integrates with APIs for real-time health data and feedback.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published