aboutsummaryrefslogtreecommitdiffstats
path: root/crates/pseudonyms/pseudonyms.toml
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2025-08-10 13:45:11 +0200
committerrtkay123 <dev@kanjala.com>2025-08-10 13:45:11 +0200
commitdbff6fa4e5684d8636fd46ecadfe5874a253bd49 (patch)
tree1039d96c2d02fbc6df1b7b218446c3a8acf1c6b5 /crates/pseudonyms/pseudonyms.toml
parent8cda165f9d3f108c80a4c9ee10c68a28299cb2d1 (diff)
downloadwarden-dbff6fa4e5684d8636fd46ecadfe5874a253bd49.tar.bz2
warden-dbff6fa4e5684d8636fd46ecadfe5874a253bd49.zip
feat(pseudonyms): serve api
Diffstat (limited to 'crates/pseudonyms/pseudonyms.toml')
-rw-r--r--crates/pseudonyms/pseudonyms.toml25
1 files changed, 25 insertions, 0 deletions
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