1
0
mirror of https://github.com/hexolan/panels.git synced 2026-05-20 03:29:23 +01:00
Files
panels/services/post-service
dependabot[bot] 81b2a5fcde build(deps): bump the go_modules group across 2 directories with 1 update
Bumps the go_modules group with 1 update in the /services/panel-service directory: [github.com/jackc/pgx/v5](https://github.com/jackc/pgx).
Bumps the go_modules group with 1 update in the /services/post-service directory: [github.com/jackc/pgx/v5](https://github.com/jackc/pgx).


Updates `github.com/jackc/pgx/v5` from 5.5.4 to 5.9.0
- [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jackc/pgx/compare/v5.5.4...v5.9.0)

Updates `github.com/jackc/pgx/v5` from 5.5.4 to 5.9.0
- [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jackc/pgx/compare/v5.5.4...v5.9.0)

---
updated-dependencies:
- dependency-name: github.com/jackc/pgx/v5
  dependency-version: 5.9.0
  dependency-type: direct:production
  dependency-group: go_modules
- dependency-name: github.com/jackc/pgx/v5
  dependency-version: 5.9.0
  dependency-type: direct:production
  dependency-group: go_modules
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-16 22:14:27 +00:00
..
2024-03-27 11:12:43 +00:00
2023-09-27 16:17:47 +01:00
2023-09-27 16:17:47 +01:00
2023-09-27 16:17:47 +01:00
2023-09-27 16:17:47 +01:00

Post Service

Event Documentation

  • Events Produced:

    • Topic: "post" | Schema: "PostEvent" protobuf
      • Type: "created" | Data: Post
      • Type: "updated" | Data: Post
      • Type: "deleted" | Data: Post (only with Post.id attribute)
  • Events Consumed:

    • Topic: "panel" | Schema: "PanelEvent" protobuf
      • Type: "deleted" | Data: Post (only with Post.id attribute)
    • Topic: "user" | Schema: "UserEvent" protobuf
      • Type: "deleted" | Data: User

Configuration

Environment Variables

PostgreSQL:

POSTGRES_USER (Required)

  • e.g. "postgres"

POSTGRES_PASS (Required)

  • e.g. "postgres"

POSTGRES_HOST (Required)

  • e.g. "localhost:5432"

POSTGRES_DATABASE (Required)

  • e.g. "postgres"

Redis:

REDIS_HOST (Required)

  • e.g. "localhost:6379"

REDIS_PASS (Required)

  • e.g. "redis"

Kafka:

KAFKA_BROKERS (Required)

  • e.g. "localhost:9092" or "localhost:9092,localhost:9093"

Other:

LOG_LEVEL (Default: "info")

  • i.e. "debug", "info", "warn", "error", "fatal", "panic" or "disabled"