Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

maple3142/cf-webhook

Repository files navigation

cf-webhook

A webhook.site-like service running on Cloudflare Workers or self-hosted using Bun.

Deployment (using D1 as backing storage)

  1. Install Wrangler
  2. wrangler d1 create cf-webhook to create a Durable Object named cf-webhook
  3. Edit wrangler.toml and update database_id in d1_databases section to the id of the created Durable Object. (Also update database_name if you used a different name)
  4. Comment out or remove kv_namespaces sections in wrangler.toml.
  5. wrangler d1 execute cf-webhook --file=./schema.sql
  6. wrangler publish
  7. Visit the published URL and you should see the web interface.

Deployment (using KV as backing storage)

  1. Install Wrangler
  2. wrangler2 kv:namespace create files and wrangler2 kv:namespace create requests to create necessary KV namespaces
  3. Edit wrangler.toml and update namespace_id in kv_namespaces section to the id of the created KV namespace. (Ensure the id matches the correct binding)
  4. Comment out or remove d1_databases section in wrangler.toml.
  5. Edit BACKING_STORAGE in vars section to kv.
  6. wrangler publish
  7. Visit the published URL and you should see the web interface.

Deployment (with Bun)

  1. bun run ./src/bun-entry.ts

Deployment (with Docker)

  1. docker compose up -d

Development

Setup env vars

Create .dev.vars file with the following content:

ADMIN_USERNAME=admin
ADMIN_PASSWORD=admin

Setup Local D1

wrangler2 d1 execute cf-webhook --local --file=./schema.sql

Demo instance

Username: admin, Password: admin

Releases

No releases published

Packages

AltStyle によって変換されたページ (->オリジナル) /