{"id":48470475,"url":"https://github.com/jacobstephens2/exodus40lite","last_synced_at":"2026-04-07T06:05:15.166Z","repository":{"id":339445900,"uuid":"1161892353","full_name":"JacobStephens2/exodus40lite","owner":"JacobStephens2","description":"A Lenten accountability tracker for small groups following an adapted Exodus 90 rule, built as a Progressive Web App with Android support.","archived":false,"fork":false,"pushed_at":"2026-03-31T13:53:56.000Z","size":3783,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-31T15:29:10.586Z","etag":null,"topics":["accountability-tracker","android-twa","lent","php","pwa","vanilla-javascript"],"latest_commit_sha":null,"homepage":"https://exodus.stephens.page","language":"JavaScript","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-02-19T16:31:04.000Z","updated_at":"2026-03-31T13:54:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/JacobStephens2/exodus40lite","commit_stats":null,"previous_names":["jacobstephens2/exodus40lite"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/JacobStephens2/exodus40lite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2Fexodus40lite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2Fexodus40lite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2Fexodus40lite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2Fexodus40lite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JacobStephens2","download_url":"https://codeload.github.com/JacobStephens2/exodus40lite/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobStephens2%2Fexodus40lite/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":["accountability-tracker","android-twa","lent","php","pwa","vanilla-javascript"],"created_at":"2026-04-07T06:05:14.572Z","updated_at":"2026-04-07T06:05:15.161Z","avatar_url":"https://github.com/JacobStephens2.png","language":"JavaScript","readme":"# Exodus 40 Lite\n\nLive at https://exodus.stephens.page\n\nA Progressive Web App for a small men's group at St. Agatha St. James parish (West Philadelphia) to track their Lenten rule of life. The rule is adapted from [Exodus 90](https://exodus90.com), condensed to the 47 days of Lent 2026 (Ash Wednesday through Holy Saturday).\n\n## Features\n\n- **Daily checklist** across six categories: Prayer, Fasting, Almsgiving \u0026 Works of Charity, Fraternity, Stewardship, and Asceticism\n- **Progress tracking** with a visual progress bar and day counter\n- **Daily notes** with auto-save\n- **Date navigation** through the Lent period with a \"Go to Today\" shortcut\n- **Weekly item tracking** (e.g., 2/3 exercise sessions completed this week)\n- **Offline support** via Service Worker with cache-first strategy\n- **Optional user accounts** for syncing data across multiple devices\n- **Installable** as a standalone app on mobile (PWA) or via the Android TWA wrapper\n\n## Tech Stack\n\n- **Frontend:** Vanilla HTML, CSS, and JavaScript (no frameworks, no build step)\n- **Backend:** PHP + MySQL\n- **Auth:** Token-based (64-character hex Bearer tokens)\n- **Hosting:** Apache with HTTPS\n\n## Project Structure\n\n```\n/                        Root (single-page app)\n├── index.html           App entry point\n├── app.js               Application logic\n├── style.css            Styling (CSS custom properties, mobile-first)\n├── sw.js                Service Worker\n├── manifest.json        PWA manifest\n├── .htaccess            Apache rewrites \u0026 SW cache control\n├── api/                 PHP API endpoints\n│   ├── config.php       DB connection, CORS, auth helpers\n│   ├── login.php        Authentication\n│   ├── register.php     Account creation\n│   ├── data.php         Checklist data sync (GET/POST)\n│   ├── logout.php       Token invalidation\n│   └── private/         Credentials \u0026 schema (not served by HTTP)\n├── android-twa/         Android Trusted Web Activity wrapper\n├── documents/           Planning docs \u0026 specs\n├── favicon_io/          Icons and favicons\n└── .well-known/         Digital Asset Links for Android app verification\n```\n\n## Data Sync\n\nChecklist data is stored in `localStorage` for offline use. Users who create an account get automatic server sync with timestamp-based conflict resolution (most recent change wins).\n\n## Setup\n\n1. Serve the project root with Apache (HTTPS recommended).\n2. Copy `api/private/secrets.example.php` to `api/private/secrets.php` and fill in your MySQL credentials.\n3. Run the SQL scripts in `api/private/` to create the database tables.\n4. Visit the app in a browser and optionally install it to your home screen.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobstephens2%2Fexodus40lite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacobstephens2%2Fexodus40lite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobstephens2%2Fexodus40lite/lists"}