Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 828 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 828 Bytes

WebTrigger: minimalistic webhook service

WebTrigger is a service that simplifies webhook management and includes basic filtering. It is built using Elysia.js and PostgreSQL.

Small usage example: https://github.com/dev5c32373043/webtrigger-example

Getting started

To start the project install all dependencies in requrements section. Add .env or .env.local file (.env.example as an example)

Install packages:

bun install

Create database and run migrations:

bunx prisma migrate dev --name init

And finally start the dev server:

bun run dev

Requirements