0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-25 02:31:30 +01:00
🦔 PostHog provides open-source product analytics, session recording, feature flagging and A/B testing that you can self-host.
Go to file
2023-12-01 00:44:09 +01:00
.github/workflows fix: Wait for Postgres to be up in CI 2023-11-30 12:23:33 +01:00
hook-common fix: Use the type alias I defined 2023-12-01 00:44:09 +01:00
hook-consumer Structure 2023-11-27 13:20:47 +00:00
hook-producer Structure 2023-11-27 13:20:47 +00:00
migrations feat: Support for attempted_by 2023-11-30 12:18:17 +01:00
.gitignore Structure 2023-11-27 13:20:47 +00:00
Cargo.lock feat: Initial PgQueue implementation 2023-11-29 18:52:12 +01:00
Cargo.toml Structure 2023-11-27 13:20:47 +00:00
docker-compose.yml feat: Initial PgQueue implementation 2023-11-29 18:52:12 +01:00
LICENSE
README.md fix: README recommends --waiting for docker compose to be up 2023-11-30 12:27:47 +01:00

rusty-hook

A reliable and performant webhook system for PostHog

Testing

  1. Start a PostgreSQL instance:
docker compose -f docker-compose.yml up -d --wait
  1. Prepare test database:
export DATABASE_URL=postgres://posthog:posthog@localhost:15432/test_database
sqlx database create
sqlx migrate run
  1. Test:
cargo test