Healse is a web app that lets you track your training progress.
With Healse you can easly track your:
- Weight
- BMI
- Muscle and other body metrics
- Body fat
Clone the project:
git clone https://github.com/CharlieSEE/health-app
cd ./health-app
Install npm packages and build the app:
npm install
npm run build
Install serve and run the build:
npm install -g serve
serve -s build
Your static site will be served on the port 3000. You can adjust the port by using the
-l
or--listen
flags:serve -s build -l 4000