diff options
author | rtkay123 <dev@kanjala.com> | 2025-07-27 18:16:41 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-07-27 18:16:41 +0200 |
commit | 3c4d17cf2840c643b8cd111ef775750cc5ae83b3 (patch) | |
tree | 2b7d25b24d94141a6d9255426d4f973cced5d278 /crates/profile-service/profile.toml | |
parent | e26d87f4fa18999c6bcfbcf32cfa85adab11acdd (diff) | |
download | sellershut-3c4d17cf2840c643b8cd111ef775750cc5ae83b3.tar.bz2 sellershut-3c4d17cf2840c643b8cd111ef775750cc5ae83b3.zip |
refactor: profile -> users
Diffstat (limited to 'crates/profile-service/profile.toml')
-rw-r--r-- | crates/profile-service/profile.toml | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/crates/profile-service/profile.toml b/crates/profile-service/profile.toml deleted file mode 100644 index 13a5f0a..0000000 --- a/crates/profile-service/profile.toml +++ /dev/null @@ -1,37 +0,0 @@ -[application] -env = "development" -port = 1610 - -[monitoring] -log-level = "sellershut_profiles=trace,info" - -[misc] -temp-ttl = 1000 -cache-ttl = 300 - -[database] -pool_size = 100 -port = 5432 -name = "profiles" -host = "localhost" -password = "password" -user = "postgres" - -[nats] -hosts = ["nats://localhost:4222"] - -[cache] -dsn = "redis://localhost:6379" -pooled = true -type = "non-clustered" # clustered, non-clustered or sentinel -max-connections = 100 - -[cache.sentinel] -master-name = "mymaster" -nodes = [ - { host = "127.0.0.1", port = 26379 }, - { host = "127.0.0.2", port = 26379 }, - { host = "127.0.0.3", port = 26379 }, -] - -# vim:ft=toml |