Setup

Get Wrd running
in under 5 minutes

Four steps. No config files. No CLI. Just a GitHub webhook and your repo.

01

Add the GitHub webhook

1 minute

In your GitHub repo, go to Settings → Webhooks → Add webhook.

https://wrd.polsia.app/webhook
application/json
Pushes and Pull requests
Note: Enable SSL on GitHub's side. Wrd uses HTTPS.
02

Set your Webhook Secret

1 minute

Create a random secret (e.g., run openssl rand -hex 32) and add it to your Render environment.

Render Dashboard → Your Service → Environment → Add variable:
WEBHOOK_SECRET = your-random-secret-here

Then back in GitHub webhook settings, set the same secret under "Secret". GitHub will sign payloads — Wrd will verify them.

03

Test it with a push

30 seconds

Push any commit to your repo. GitHub will deliver the event to Wrd.

terminal
git commit -m "Add login form" --allow-empty && git push

Wait 5–10 seconds, then check the /changelog page for your entry.

04

View your changelog

done

Every push and merged PR generates a polished changelog entry, automatically.

The webhook setup above uses GitHub's Webhooks UI. Use the GitHub Actions tab if you prefer to manage deployments as code — no UI required, and you own the integration definition in your repo.

See it live

No setup required — view the live demo showing what Wrd produces from real commits.