From dbff6fa4e5684d8636fd46ecadfe5874a253bd49 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sun, 10 Aug 2025 13:45:11 +0200 Subject: feat(pseudonyms): serve api --- crates/pseudonyms/pseudonyms.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 crates/pseudonyms/pseudonyms.toml (limited to 'crates/pseudonyms/pseudonyms.toml') diff --git a/crates/pseudonyms/pseudonyms.toml b/crates/pseudonyms/pseudonyms.toml new file mode 100644 index 0000000..ec8a5a9 --- /dev/null +++ b/crates/pseudonyms/pseudonyms.toml @@ -0,0 +1,25 @@ +[application] +env = "development" +port = 1610 + +[monitoring] +log-level = "warden_pseudonyms=trace,info" +opentelemetry-endpoint = "http://localhost:4317" +loki-endpoint = "http://localhost:3100" + +[misc] +something = "http://localhost:8080" + +[database] +pool_size = 100 +port = 5432 +name = "pseudonyms" +host = "localhost" +user = "postgres" +password = "password" + +[cache] +dsn = "redis://localhost:6379" +pooled = true +type = "non-clustered" # clustered, non-clustered or sentinel +max-connections = 100 -- cgit v1.2.3