emacs-survey/config/env/dev.jl

16 lines
477 B
Julia
Raw Normal View History

2022-10-02 08:17:02 +00:00
using Genie, Logging
2021-12-17 18:09:25 +00:00
2022-10-02 08:17:02 +00:00
Genie.Configuration.config!(
server_port = 8000,
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,
watch = true
2021-12-17 18:09:25 +00:00
)
2021-12-19 09:17:04 +00:00
ENV["JULIA_REVISE"] = "auto"