11 lines
360 B
Crystal
11 lines
360 B
Crystal
# This is used when generating URLs for your application
|
|
Lucky::RouteHelper.configure do |settings|
|
|
if LuckyEnv.production?
|
|
# Example: https://my_app.com
|
|
settings.base_uri = ENV.fetch("APP_DOMAIN")
|
|
else
|
|
# Set domain to the default host/port in development/test
|
|
settings.base_uri = "http://localhost:#{Lucky::ServerSettings.port}"
|
|
end
|
|
end
|