{"id":30880610,"url":"https://github.com/f-mahler/kirby-vercel","last_synced_at":"2025-09-08T07:04:53.094Z","repository":{"id":53316931,"uuid":"263368719","full_name":"f-mahler/kirby-vercel","owner":"f-mahler","description":"DEPRECATED Trigger deploy hooks of a static site with Vercel directly from the Kirby panel. (Deprecated)","archived":false,"fork":false,"pushed_at":"2024-03-04T10:25:43.000Z","size":554,"stargazers_count":45,"open_issues_count":2,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-01T03:06:08.061Z","etag":null,"topics":["deployment","deprecated","kirby","plugin","static","vercel"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/f-mahler.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2020-05-12T14:59:06.000Z","updated_at":"2024-09-12T18:01:47.000Z","dependencies_parsed_at":"2024-03-04T11:52:56.453Z","dependency_job_id":null,"html_url":"https://github.com/f-mahler/kirby-vercel","commit_stats":{"total_commits":21,"total_committers":4,"mean_commits":5.25,"dds":0.4285714285714286,"last_synced_commit":"47faa07b028bea67c9fc3b37d5ca8a2424c48923"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/f-mahler/kirby-vercel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f-mahler%2Fkirby-vercel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f-mahler%2Fkirby-vercel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f-mahler%2Fkirby-vercel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f-mahler%2Fkirby-vercel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/f-mahler","download_url":"https://codeload.github.com/f-mahler/kirby-vercel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f-mahler%2Fkirby-vercel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274146804,"owners_count":25230151,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"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":["deployment","deprecated","kirby","plugin","static","vercel"],"created_at":"2025-09-08T07:04:51.670Z","updated_at":"2025-09-08T07:04:53.074Z","avatar_url":"https://github.com/f-mahler.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DEPRECATED\n\nThis is no longer supported. Unfortunately don't have the time to work on this plugin. \n\n# Kirby Vercel\n\nThis is a plugin to trigger [deploy hooks](https://vercel.com/docs/v2/more/deploy-hooks) of a static site with Vercel directly from the Kirby panel.\n\nFor it to work, Kirby needs to be set up as a headless CMS on its own server, for example with [KQL](https://github.com/getkirby/kql) or [better-rest](https://github.com/robinscholz/better-rest) to fetch content on your static site generator (e.g. Nuxt, Next, or whichever you prefer) that is then deployed to Vercel via its own repository.\n\n_It does **not** generate a static site of Kirby that is deployed to Vercel directly_\n\n![](kirby-vercel.gif)\n\n## Installation\n\n### Download\n\nDownload and copy this repository to `/site/plugins/kirby-vercel`\n\n### Composer\n\n```\ncomposer require f-mahler/kirby-vercel\n```\n\n## Setup\n\n/site/config/config.php\n\n```php\nreturn [\n   // Required to make the button work. You can generate a Deployment Hook in Project Settings -\u003e Git Integration in Vercel's Dashboard\n  'f-mahler.kirby-vercel.deployurl' =\u003e '\u003cdeployUrl\u003e',\n\n  // To show the last deployment in the field, you need to add these settings\n  'f-mahler.kirby-vercel.token' =\u003e '\u003ctoken\u003e',\n  'f-mahler.kirby-vercel.projectid' =\u003e '\u003cprojectId\u003e',\n\n  // Automatically deploy when triggering one of the following hooks. See Kirby documentation for possible options\n  'f-mahler.kirby-vercel.hooks' =\u003e [\n    'site.update:after',\n    'page.update:after'\n  ]\n];\n\n```\n\nIn your blueprint (e.g. /site/blueprints/site.yml)\n\n```\nvercel:\n  label: Vercel\n  type: vercel\n```\n\nYou can optionally add the following:\n\n```\nbutton: true // set to \"false\" to hide button, e.g. when using automatic hooks\n// to change the wording of the button you can use these options\ndeploy: \"Publish website\"\nloading: \"Loading..\"\ncomplete: \"Finished\"\nerror: \"Error\"\nhelp: \"Click to publish changes to the website\"\nwidth: 1/3\n```\n\n## Alternatives\n\nFor Netlify or any other deploy triggers check out: [Kirby-Webhooks](https://github.com/pju-/kirby-webhooks)\n\n## License\n\nMIT\n\n## Credits\n\n- [Frederik Mahler-Andersen](https://github.com/f-mahler)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff-mahler%2Fkirby-vercel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ff-mahler%2Fkirby-vercel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff-mahler%2Fkirby-vercel/lists"}