Skip to content

A progressive web app to track your baby and share the data with your family in real-time.

License

Notifications You must be signed in to change notification settings

phuongwd/baby-tracker

 
 

Repository files navigation

Baby Tracker

logo

A progressive web app to track your baby and share the data with your family in real-time.

Contributors Docker Cloud container status Docker Pulls Maintainability FOSSA Status

Features

Create a new baby by entering his/her name in the designated field. Afterwards you will receive a unique id which represents your baby. Share this id with your husband, family and friends. All inserts, updates and deletes will be synced to everyone in realtime, thanks to the magic of websockets.

At the moment these activities can be tracked:

  • Diaper
  • Nursing
  • Food
  • Sleep
  • Measurement

The data can be exported by clicking export in the bottom right-hand corner.

You can also activate a dark mode.

Screenshots at the features page

Translations

🇩🇪 🇫🇷 🇺🇸 🇩🇰

To correct a translation simply edit the corresponding message.po file.

To add a new language you can do this:

# Fork https://github.com/mikebarkmin/baby-tracker.git
git clone https://github.com/{your_username}/baby-tracker.git
cd baby-tracker.git
git checkout -b languages/{languagecode}
yarn install
yarn locale:add {languagecode}
yarn locale:extract
# Edit client/src/locale/{languagecode}/messages.po
yarn locale:compile
Update client/src/locales/catalogs.js
Update client/src/hooks/useLocale.js
# Submit a pull request

Please add your questions as GitHub issue: Baby-Tracker Feature Requests and Bugs.

Develop

# Fork https://github.com/mikebarkmin/baby-tracker.git
git clone https://github.com/{yourusername}/baby-tracker.git
cd baby-tracker
cd client
yarn install
cd ..
docker-compose up
# Submit a pull request

Deploy

wget https://github.com/mikebarkmin/baby-tracker/raw/master/docker-compose.prod.yml
wget https://github.com/mikebarkmin/baby-tracker/raw/master/mongo-init.js
# Change username and password to something other than server/test
docker-compose -f docker-compose.prod.yml up
# Visit localhost:8080

Backup & Restore

# backup
docker-compose -f docker-compose.prod.yml exec -T mongo sh -c 'mongodump --username=root --password=example --archive' > db.dump.archive

# restore
docker-compose -f docker-compose.prod.yml exec -T mongo sh -c 'mongorestore --username=root --password=example --archive' < db.dump.archive

License

Licensed under the MIT License, Copyright © 2019-present Mike Barkmin.

See LICENSE for more information.

About

A progressive web app to track your baby and share the data with your family in real-time.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 95.6%
  • HTML 2.5%
  • Dockerfile 1.9%