{"id":50942343,"url":"https://github.com/rmdes/cloudron-newsdiff","last_synced_at":"2026-06-17T16:10:36.023Z","repository":{"id":347288902,"uuid":"1193442046","full_name":"rmdes/cloudron-newsdiff","owner":"rmdes","description":"Cloudron packaging for NewsDiff — news article diff tracker","archived":false,"fork":false,"pushed_at":"2026-06-07T10:53:43.000Z","size":34,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-07T12:14:38.770Z","etag":null,"topics":["atom-feed","cloudron","cloudron-app","cloudron-package","diffengine","jsonfeed","newsdiffs","really-simple-sydication","rss","rss-feed"],"latest_commit_sha":null,"homepage":"https://diff.rmendes.net/about","language":"Shell","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/rmdes.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-27T08:21:32.000Z","updated_at":"2026-06-07T10:53:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/rmdes/cloudron-newsdiff","commit_stats":null,"previous_names":["rmdes/cloudron-newsdiff"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rmdes/cloudron-newsdiff","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmdes%2Fcloudron-newsdiff","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmdes%2Fcloudron-newsdiff/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmdes%2Fcloudron-newsdiff/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmdes%2Fcloudron-newsdiff/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rmdes","download_url":"https://codeload.github.com/rmdes/cloudron-newsdiff/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rmdes%2Fcloudron-newsdiff/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34453646,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["atom-feed","cloudron","cloudron-app","cloudron-package","diffengine","jsonfeed","newsdiffs","really-simple-sydication","rss","rss-feed"],"created_at":"2026-06-17T16:10:35.544Z","updated_at":"2026-06-17T16:10:36.013Z","avatar_url":"https://github.com/rmdes.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cloudron-newsdiff\n\nCloudron packaging for [NewsDiff](https://github.com/rmdes/newsdiff) — the news article diff tracker.\n\nThis repo contains only the Cloudron deployment files. The application source lives in `rmdes/newsdiff` and is included here as a git submodule.\n\n## Contents\n\n| File | Purpose |\n|------|---------|\n| `Dockerfile` | Cloudron image (cloudron/base:5.0.0) |\n| `CloudronManifest.json` | Cloudron app manifest |\n| `start.sh` | Container entrypoint — maps Cloudron env vars, runs migrations, starts nginx + bot + app |\n| `nginx.conf` | Internal reverse proxy — routes ActivityPub paths to Botkit, everything else to SvelteKit |\n| `env.sh.template` | User-editable credentials file (copied to localstorage on first run) |\n| `newsdiff/` | App source (git submodule → rmdes/newsdiff) |\n\n## Usage\n\n### Clone with submodule\n\n```bash\ngit clone --recurse-submodules https://github.com/rmdes/cloudron-newsdiff.git\ncd cloudron-newsdiff\n```\n\n### Option A: Use pre-built image (quickest)\n\nA pre-built image is published to GHCR on every push to `main`:\n\n```bash\n# Install on your Cloudron\ncloudron install --image ghcr.io/rmdes/cloudron-newsdiff:main\n\n# Update an existing install\ncloudron update --app \u003capp-id\u003e --image ghcr.io/rmdes/cloudron-newsdiff:main\n```\n\n### Option B: Build locally\n\n```bash\n# Build the Cloudron image (pushes to your configured registry)\ncloudron build\n\n# Install on your Cloudron\ncloudron install --image \u003cyour-registry\u003e/com.newsdiff.app:\u003ctag\u003e\n\n# Update an existing install\ncloudron update --app \u003capp-id\u003e --image \u003cyour-registry\u003e/com.newsdiff.app:\u003ctag\u003e\n```\n\n### Updating the app\n\n```bash\n# Pull latest app code\ngit submodule update --remote newsdiff\ngit add newsdiff\ngit commit -m \"chore: update newsdiff to latest\"\n\n# Rebuild and redeploy\ncloudron build\ncloudron update --app \u003capp-id\u003e --image \u003cyour-registry\u003e/com.newsdiff.app:\u003ctag\u003e\n```\n\n## Addons required\n\n| Addon | Purpose |\n|-------|---------|\n| `postgresql` | Database |\n| `redis` | Job queue (BullMQ) |\n| `localstorage` | Bot profile config + uploaded images |\n| `oidc` | Protects `/feeds` and `/bot/profile` routes |\n\n## Social media credentials\n\nOn first run, `start.sh` copies `env.sh.template` to `/app/data/config/env.sh` in the app's localstorage. Edit that file via the Cloudron file manager to configure Bluesky credentials and bot identity, then restart the app.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frmdes%2Fcloudron-newsdiff","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frmdes%2Fcloudron-newsdiff","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frmdes%2Fcloudron-newsdiff/lists"}