From 658381307dceff28e59d730b1941741c3bb4530f Mon Sep 17 00:00:00 2001 From: Jet Pham Date: Thu, 5 Mar 2026 13:22:19 -0800 Subject: [PATCH] feat: add readme --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c1b4995 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# mymx + +Webhook receiver for [MyMX](https://mymx.email) email events. Verifies signatures and stores emails in PostgreSQL. + +## Usage + +```bash +createdb mymx +export DATABASE_URL="postgres:///mymx" +export MYMX_WEBHOOK_SECRET="your-webhook-secret" +sqlx migrate run --source mymx-server/migrations +cargo run -p mymx-server +``` + +Point your MyMX endpoint to `https://your-domain/webhook`.