Files
bit/app/config/kemal.cr
T
2024-10-27 11:07:59 +01:00

8 lines
212 B
Crystal

require "kemal"
Kemal.config.env = ENV["ENV"]? || "development"
Kemal.config.port = ENV["PORT"]?.try(&.to_i) || 4000
Kemal.config.host_binding = ENV["HOST"]? || "0.0.0.0"
Kemal.config.powered_by_header = false