An offline-first Expo app for planning tasks, running Pomodoro sessions, splitting epics across dates, and reviewing daily work totals.
- Tasks, epics, deadlines, timer state, and reports are stored on the phone using
expo-sqlite/kv-store. - There is no backend and no web server dependency for the app's data.
- Expo's development server is only used while you are testing through Expo Go. A standalone Android APK or iOS build runs without that server.
-
Install dependencies:
npm install
-
Start Expo:
npx expo start
-
Install Expo Go on your phone and scan the QR code.
For a quick Android APK:
npx eas build -p android --profile previewFor iPhone, use EAS Build with your Apple developer account:
npx eas build -p ios --profile preview- Add tasks with planned dates, deadlines, notes, and Pomodoro estimates.
- Run a Pomodoro timer against any open task.
- Mark tasks complete and credit their allocated time into reports.
- Create epics and split child tasks across consecutive calendar dates.
- Browse tasks through a monthly calendar.
- See daily reports for planned tasks, completed tasks, tracked time, and credited work time.