diskfloppy.me/config/application.cr
2024-09-13 12:59:16 +01:00

25 lines
661 B
Crystal

# 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.
# ```