{"id":48470462,"url":"https://github.com/jacobstephens2/creightontrackingapp","last_synced_at":"2026-04-07T06:05:13.192Z","repository":{"id":345662551,"uuid":"1186830397","full_name":"JacobStephens2/CreightonTrackingApp","owner":"JacobStephens2","description":"A privacy-focused fertility cycle tracking app using the Creighton Model FertilityCare System, with offline support, encrypted sync, and provider sharing. Available as a web app and on Android.","archived":false,"fork":false,"pushed_at":"2026-03-27T19:32:05.000Z","size":22589,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-28T00:35:37.875Z","etag":null,"topics":["android","creighton-model","encryption","fertilitcare","fertility-tracking","health","offline-first","privacy","progressive-web-app","reproductive-health"],"latest_commit_sha":null,"homepage":"https://creighton.stephens.page","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JacobStephens2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-20T03:10:18.000Z","updated_at":"2026-03-27T19:32:08.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/JacobStephens2/CreightonTrackingApp","commit_stats":null,"previous_names":["jacobstephens2/creightontrackingapp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JacobStephens2/CreightonTrackingApp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2FCreightonTrackingApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2FCreightonTrackingApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2FCreightonTrackingApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2FCreightonTrackingApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JacobStephens2","download_url":"https://codeload.github.com/JacobStephens2/CreightonTrackingApp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2FCreightonTrackingApp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31501903,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","creighton-model","encryption","fertilitcare","fertility-tracking","health","offline-first","privacy","progressive-web-app","reproductive-health"],"created_at":"2026-04-07T06:05:12.221Z","updated_at":"2026-04-07T06:05:13.178Z","avatar_url":"https://github.com/JacobStephens2.png","language":"TypeScript","readme":"# Creighton Cycle Tracker\n\nA PWA for tracking your fertility cycle using the Creighton Model FertilityCare System (CrMS).\n\n**Live at [creighton.stephens.page](https://creighton.stephens.page)**\n\n## Features\n\n- **Daily observations** — bleeding (H/M/L/VL/B), mucus stretch (0–10), mucus characteristics (C/K/L/B/G/Y), frequency, peak day marking, intercourse tracking, notes\n- **Auto-computed CrMS stamps** — green (dry/infertile), red (bleeding), white (fertile/mucus), yellow (Basic Infertile Pattern), with peak day (P) and post-peak count (1/2/3)\n- **Chart view** — classic Creighton 35-column chart with cycle rows, stamps, and observation codes\n- **Calendar view** — monthly grid with mini stamps and cycle boundaries\n- **Auto cycle detection** — new cycle starts when bleeding resumes after non-bleeding days\n- **Auto peak day detection** — last day of peak-type mucus\n- **Export/import** — JSON backup and CSV chart export with cycle-level summaries\n- **Optional account \u0026 sync** — sign in to back up data to the server and access it across devices\n- **End-to-end encryption** — synced data is encrypted client-side with PBKDF2 + AES-256-GCM; the server never sees plaintext health data\n- **Provider sharing** — generate a time-limited read-only share link for your FertilityCare Practitioner (expires after 90 days)\n- **Dark mode** — follows system preference with manual toggle\n- **Offline-capable** — full PWA with service worker, works without internet\n- **Installable** — add to home screen on Android/iOS, TWA-ready for Play Store\n\n## Tech Stack\n\n**Frontend:** Vanilla TypeScript, Vite, Dexie.js (IndexedDB), vite-plugin-pwa, Web Crypto API\n**Backend:** Express, better-sqlite3, JWT auth, bcrypt\n**Testing:** Vitest\n**Hosting:** Apache, Let's Encrypt SSL\n\n## Development\n\n```bash\nnpm install\nnpm run dev         # Dev server with hot reload\nnpm run build       # Production build\nnpm run preview     # Preview production build\n```\n\nThe backend API server (for account/sync features):\n\n```bash\ncd server\nnpm install\nnpm run dev         # Dev server with auto-reload\nnpm run build       # Compile TypeScript\nnpm start           # Run production build\n```\n\nIn development, Vite proxies `/api` requests to `localhost:3456`.\n\n## Deployment\n\nThe app is self-hosted on Apache with the Express API running as a systemd service (`creighton-api`) on port 3456, proxied through Apache.\n\n```bash\n# Build and deploy frontend\nnpm run build\nsudo cp -r dist/* /var/www/creighton.stephens.page/\n\n# Build and deploy backend\ncd server \u0026\u0026 npm run build\nsudo systemctl restart creighton-api\n```\n\n## Learn More\n\n- [FertilityCare.org](https://www.fertilitycare.org/) — FertilityCare Centers of America\n- [Saint Paul VI Institute](https://saintpaulvi.com/) — Pope Paul VI Institute for the Study of Human Reproduction\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobstephens2%2Fcreightontrackingapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacobstephens2%2Fcreightontrackingapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobstephens2%2Fcreightontrackingapp/lists"}