M BMI Money Manager
Track. Save. Grow.

About BMI Money Manager

BMI Money Manager helps users build healthy financial habits, just as BMI Nutrition helps users build healthy nutrition habits. The design is modern, trustworthy, clean, and easy to use.

BMI Nutrition

Focuses on caloric tracking, weight benchmarks, and physical nutrient logs. Physical health is governed by daily consumption limits and caloric balances.

BMI Money Manager

Focuses on transactional logs, monthly budgeting caps, and savings rates. Financial health is governed by spending limits and saving habits.

Product Roadmap

v1.0

Local Storage & Privacy (Current)

No account credentials required. Ledger records compile on-device in real-time.

v2.0

Cloud Sync & Shared Accounts

User registrations, email/password resets, and unified credentials shared with BMI Nutrition.

v3.0

Mobile Native Android Apps

Android APK native port, offline sync synchronization workers, and secure backup restorations.

v4.0

Family Accounts & Shared Budgets

Co-dependent ledger syncing, group goal progression bars, and premium wealth audits.

Future Database Schema Specifications

-- Table: Users

CREATE TABLE users (
  id VARCHAR PRIMARY KEY,
  email VARCHAR UNIQUE,
  created_at TIMESTAMP
);

-- Table: Transactions

CREATE TABLE transactions (
  id VARCHAR PRIMARY KEY,
  user_id VARCHAR REFERENCES users(id),
  type VARCHAR, -- income / expense
  category VARCHAR,
  amount NUMERIC,
  currency VARCHAR(3),
  date DATE,
  description TEXT
);