Files
service/config/runtime.exs
T

9 lines
269 B
Elixir

import Config
config :neon_vertigo_service, :mqtt_params, [
host: System.get_env("MQTT_HOST", "localhost"),
port: System.get_env("MQTT_PORT", "1883") |> String.to_integer,
username: System.get_env("MQTT_USERNAME"),
password: System.get_env("MQTT_PASSWORD"),
]