mirror of
https://github.com/benbusby/farside.git
synced 2025-03-15 11:46:32 -04:00

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).
12 lines
269 B
Elixir
12 lines
269 B
Elixir
import Config
|
|
|
|
config :farside,
|
|
port: 4001,
|
|
redis_conn: "redis://localhost:6379",
|
|
update_file: ".update-results",
|
|
service_prefix: "service-",
|
|
fallback_suffix: "-fallback",
|
|
previous_suffix: "-previous",
|
|
services_json: "services.json",
|
|
index: "index.eex"
|