summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorBen Busby <noreply+git@benbusby.com>2021-11-15 20:09:34 -0700
committerBen Busby <noreply+git@benbusby.com>2021-11-15 20:09:34 -0700
commitd4581797e7a06cf4c89cf03def30e19726f26d11 (patch)
treea5bac6c35011d8f384bbb361c2aa7565629f057d /config
parent5904c7cce4d42cf29d775dc39e51183a9be2d82f (diff)
downloadfarside-d4581797e7a06cf4c89cf03def30e19726f26d11.tar.gz
Allow bypassing app router with `FARSIDE_NO_ROUTER`
Setting the aforementioned env var skips creation of the app router, which is useful for running update.exs when the main app is already running (otherwise there's a port conflict).
Diffstat (limited to 'config')
-rw-r--r--config/config.exs1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs
index c522a9f..cbed1ef 100644
--- a/config/config.exs
+++ b/config/config.exs
@@ -1,6 +1,7 @@
import Config
config :farside,
+ port: 4001,
redis_conn: "redis://localhost:6379",
update_file: ".update-results",
service_prefix: "service-",