This is a Quantified Self APP. You can create 4 different types of trackers and log them. The server supports exporting backup as CSV. It alerts you daily and sends a monthly report to all the registered emails. Give it a try and track your life!
- 🖥️ Standalone Flask API Server
- 🌐 Single Page APP(SPA) using Vue
- 📲 Can be installed as PWA on Android or iOS
- 🔐 JWT Auth
- 🔔 Daily and monthly background alert jobs using Celery
- ⚡ Caching for fast API response using Redis
- 📄 Swagger UI Documentation for API
cd /Backend
pip install -r requirements.txt
cd /Frontend
npm install
cd /Backend
python3 main.py
redis-server
celery -A tasks worker -l INFO
celery -A tasks beat
npm run serve
npm run build
cd /dist
python3 -m http.server