{"id":42455232,"url":"https://github.com/heathdutton/subsplash-ical","last_synced_at":"2026-01-28T08:56:42.907Z","repository":{"id":333950089,"uuid":"1021128083","full_name":"heathdutton/subsplash-ical","owner":"heathdutton","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-21T23:49:23.000Z","size":128,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-22T12:51:53.331Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://subsplash-ical.heathdutton.workers.dev","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/heathdutton.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-07-16T23:50:15.000Z","updated_at":"2026-01-21T23:49:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/heathdutton/subsplash-ical","commit_stats":null,"previous_names":["heathdutton/subsplash-ical"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/heathdutton/subsplash-ical","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heathdutton%2Fsubsplash-ical","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heathdutton%2Fsubsplash-ical/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heathdutton%2Fsubsplash-ical/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heathdutton%2Fsubsplash-ical/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/heathdutton","download_url":"https://codeload.github.com/heathdutton/subsplash-ical/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heathdutton%2Fsubsplash-ical/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28843031,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T07:39:25.367Z","status":"ssl_error","status_checked_at":"2026-01-28T07:39:24.487Z","response_time":57,"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":[],"created_at":"2026-01-28T08:56:42.834Z","updated_at":"2026-01-28T08:56:42.895Z","avatar_url":"https://github.com/heathdutton.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Subsplash Calendar Subscription Service\n\nA Cloudflare Worker that converts Subsplash calendar data to standard ICS/iCal format, enabling synchronization with Google Calendar, Apple Calendar, Outlook, and other calendar applications.\n\n## Overview\n\nSubsplash provides event management for churches and organizations but lacks native calendar subscription support. This service bridges that gap by:\n- Automatically discovering all calendars on a Subsplash site\n- Converting events to standard ICS/iCal format\n- Providing subscription URLs that auto-update in calendar apps\n- Supporting both individual calendars and combined feeds\n\n## Features\n\n- **Calendar Discovery**: Automatically finds all calendars on any Subsplash-powered site\n- **Multiple Formats**: Subscribe to individual calendars or all calendars combined\n- **Smart Caching**: Graduated cache TTLs based on event proximity for optimal performance\n- **Event Enhancement**: Fetches full event details including descriptions and locations\n- **Clean URLs**: Simple, memorable subscription URLs (e.g., `/domain.com/calendar-name.ics`)\n- **Preview Cards**: Shows upcoming events before subscribing\n\n## Quick Start\n\nVisit https://subsplash-ical.heathdutton.workers.dev and enter any Subsplash calendar URL to get started.\n\n### Example Subscription URLs\n\n```\n# All calendars combined\nhttps://subsplash-ical.heathdutton.workers.dev/yourchurch.com.ics\n\n# Individual calendar\nhttps://subsplash-ical.heathdutton.workers.dev/yourchurch.com/youth-events.ics\n```\n\n## How to Subscribe\n\n### Subscribe (Recommended)\nYour calendar will automatically sync with new events:\n\n- **Google Calendar:** Click + next to \"Other calendars\" → \"From URL\" → Paste URL\n- **Apple Calendar:** File → New Calendar Subscription → Paste URL\n- **Outlook:** Add calendar → Subscribe from web → Paste URL\n\n### Download\nFor one-time import (won't auto-update): Simply download the .ics file and import it.\n\n## Technical Details\n\n### Cache Strategy\n- **Current week events**: 1 hour cache\n- **Next 30 days**: 6 hours cache\n- **31-90 days out**: 24 hours cache\n- **Beyond 90 days**: 72 hours cache\n\n### API Endpoints\n\n```\n# Calendar discovery\nGET /api/discover?url=https://yourchurch.com\n\n# Direct calendar access\nGET /{domain}.ics              # All calendars\nGET /{domain}/{calendar}.ics   # Specific calendar\n```\n\n## Development\n\n### Prerequisites\n- Node.js 18+\n- Cloudflare account with Wrangler CLI\n\n### Setup\n\n```bash\n# Install dependencies\nnpm install\n\n# Run locally\nnpm run dev\n\n# Deploy to Cloudflare\nnpm run deploy\n```\n\nConfigure your KV namespace in `wrangler.json` before deploying. Deployment automatically updates the cache version for invalidation.\n\n## Troubleshooting\n\n### Calendar Not Found\n- Verify the site has a Subsplash calendar (not just event listings)\n- Try the root domain if a specific page doesn't work\n- Check if events are publicly visible\n\n### Missing Events\n- Only future events appear in preview cards\n- ICS files include all events (past and future)\n- Check if events are published and public\n\n## License\n\nMIT License - see LICENSE file for details\n\nThis service is not affiliated with Subsplash. It's an independent tool created to improve calendar integration for Subsplash users.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheathdutton%2Fsubsplash-ical","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheathdutton%2Fsubsplash-ical","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheathdutton%2Fsubsplash-ical/lists"}