 
              Open-source webhooks as a service that makes it super easy for API providers to send webhooks.
Self-host this app for $0.99/mo only!
Svix - Webhooks as a service
| ⚡️ Feature Breakdown ⚡️ | |||||||
|---|---|---|---|---|---|---|---|
| Language | Officially Supported | API Support | Webhook Verification | Other Notes | |||
| Go | ✅ | ✅ | ✅ | ||||
| Python | ✅ | ✅ | ✅ | ||||
| Typescript/Javascript | ✅ | ✅ | ✅ | ||||
| Java | ✅ | ✅ | ✅ | Async support planned. (If you use kotlin, checkout our kotlin library for coroutine support.) | |||
| Kotlin | ✅ | ✅ | ✅ | ||||
| Ruby | ✅ | ✅ | ✅ | ||||
| C# (dotnet) | ✅ | ✅ | ✅ | ||||
| Rust | ✅ | ✅ | ✅ | ||||
| PHP | ✅ | 🔜 | ✅ | ||||
cd server
docker-compose updocker run \
  --name svix-server \
  -p 8071:8071 \
  --env-file development.env \
  svix/svix-server# The JWT secret for authentication - should be secret and securely generated
jwt_secret = "8KjzRXrKkd9YFcNyqLSIY8JwiaCeRc6WK4UkMnSW"
# The DSN for the database. Only postgres is currently supported.
db_dsn = "postgresql://postgres:postgres@pgbouncer/postgres"
# The DSN for redis (can be left empty if not using redis)
redis_dsn = "redis://redis:6379"
# What kind of message queue to use.
queue_type = "redis"# The JWT secret for authentication - should be secret and securely generated
SVIX_JWT_SECRET = "8KjzRXrKkd9YFcNyqLSIY8JwiaCeRc6WK4UkMnSW"
# The DSN for the database. Only postgres is currently supported.
SVIX_DB_DSN = "postgresql://postgres:postgres@pgbouncer/postgres"
# The DSN for redis (can be left empty if not using redis)
SVIX_REDIS_DSN = "redis://redis:6379"
# What kind of message queue to use.
SVIX_QUEUE_TYPE = "redis"Authorization: Bearer <JWT_TOKEN_HERE>svix-server jwt generate// JWT: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE2NTUxNDA2MzksImV4cCI6MTk3MDUwMDYzOSwibmJmIjoxNjU1MTQwNjM5LCJpc3MiOiJzdml4LXNlcnZlciIsInN1YiI6Im9yZ18yM3JiOFlkR3FNVDBxSXpwZ0d3ZFhmSGlyTXUifQ.USMuIPrqsZTSj3kyWupCzJO9eyQioBzh5alGlvRbrbA
// Structure (when decoded):
{
  "iat": 1655140639,
  "exp": 1970500639,
  "nbf": 1655140639,
  "iss": "svix-server",
  "sub": "org_23rb8YdGqMT0qIzpgGwdXfHirMu"
}default_signature_type = "ed25519"$ svix-server asymmetric-key generate
Secret key: whsk_6Xb/dCcHpPea21PS1N9VY/NZW723CEc77N4rJCubMbfVKIDij2HKpMKkioLlX0dRqSKJp4AJ6p9lMicMFs6Kvg==
Public key: whpk_1SiA4o9hyqTCpIqC5V9HUakiiaeACeqfZTInDBbOir4=Please login to review this project.
No reviews for this project yet.
Comments (0)
Please login to join the discussion on this project.