summaryrefslogtreecommitdiff
path: root/config/runtime.exs
diff options
context:
space:
mode:
Diffstat (limited to 'config/runtime.exs')
-rw-r--r--config/runtime.exs30
1 files changed, 15 insertions, 15 deletions
diff --git a/config/runtime.exs b/config/runtime.exs
index f3cc03c..832dc95 100644
--- a/config/runtime.exs
+++ b/config/runtime.exs
@@ -1,20 +1,5 @@
import Config
-config :hammer,
- backend: [
- in_memory:
- {Hammer.Backend.ETS, [expiry_ms: 60_000 * 60 * 4, cleanup_interval_ms: 60_000 * 10]},
- redis:
- {Hammer.Backend.Redis,
- [
- expiry_ms: 60_000 * 60 * 2,
- redix_config: [
- host: System.get_env("REDIS_HOST", "localhost"),
- port: String.to_integer(System.get_env("REDIS_PORT", "6379"))
- ]
- ]}
- ]
-
config :chessh,
port: String.to_integer(System.get_env("SSH_PORT", "42069"))
@@ -43,4 +28,19 @@ if config_env() == :prod do
url: database_url,
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "10"),
socket_options: maybe_ipv6
+
+ config :hammer,
+ backend: [
+ in_memory:
+ {Hammer.Backend.ETS, [expiry_ms: 60_000 * 60 * 4, cleanup_interval_ms: 60_000 * 10]},
+ redis:
+ {Hammer.Backend.Redis,
+ [
+ expiry_ms: 60_000 * 60 * 2,
+ redix_config: [
+ host: System.get_env("REDIS_HOST", "redis"),
+ port: String.to_integer(System.get_env("REDIS_PORT", "6379"))
+ ]
+ ]}
+ ]
end