emacs-survey/config/env/dev.jl

15 lines
422 B
Julia
Raw Normal View History

2021-12-17 18:09:25 +00:00
using Genie.Configuration, Logging
const config = Settings(
2021-12-19 09:17:04 +00:00
server_port = 8088,
server_host = "0.0.0.0",
log_level = Logging.Info,
log_to_file = false,
server_handle_static_files = true,
path_build = "build",
format_julia_builds = true,
format_html_output = true,
2021-12-17 18:09:25 +00:00
)
2021-12-19 09:17:04 +00:00
ENV["JULIA_REVISE"] = "auto"