0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
🦔 PostHog provides open-source product analytics, session recording, feature flagging and A/B testing that you can self-host.
Go to file
Tomás Farías Santana 746120b4cd
fix: Typo
Co-authored-by: Brett Hoerner <brett@bretthoerner.com>
2023-12-04 10:25:03 +01:00
.github/workflows
hook-common fix: Typo 2023-12-04 10:25:03 +01:00
hook-consumer
hook-producer
migrations feat: Support for retrying 2023-12-01 14:23:03 +01:00
.gitignore
Cargo.lock
Cargo.toml
docker-compose.yml
LICENSE
README.md chore: Add basic requirements 2023-12-01 15:01:22 +01:00

rusty-hook

A reliable and performant webhook system for PostHog

Requirements

  1. Rust.
  2. sqlx-cli: To setup database and run migrations.
  3. Docker or podman (and podman-compose): To setup testing services.

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