Current section
Files
Jump to
Current section
Files
lib/runtime_config.ex
defmodule Ember.RuntimeConfig do
# use Bonfire.Common.Localise
@behaviour Bonfire.Common.ConfigModule
def config_module, do: true
@doc """
Sets runtime configuration for the extension (typically by reading ENV variables).
"""
def config do
import Config
# config :ember,
# modularity: System.get_env("ENABLE_ember") || :disabled
end
end