blob: c807149a54457392a61d44cec31ff436c49486fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# This file may be used for custom Application configurations.
# It will be loaded before other config files.
#
# Read more on configuration:
# https://luckyframework.org/guides/getting-started/configuration#configuring-your-own-code
# Use this code as an example:
#
# ```
# module Application
# Habitat.create do
# setting support_email : String
# setting lock_with_basic_auth : Bool
# end
# end
#
# Application.configure do |settings|
# settings.support_email = "support@myapp.io"
# settings.lock_with_basic_auth = LuckyEnv.staging?
# end
#
# # In your application, call
# # `Application.settings.support_email` anywhere you need it.
# ```
|