site-libsoc/Server/config/env/dev.jl

15 lines
476 B
Julia
Raw Normal View History

2023-06-15 01:41:54 +07:00
using Genie, Logging
Genie.Configuration.config!(
2023-06-27 02:08:15 +07:00
server_port = 8001,
2023-06-15 01:41:54 +07:00
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
)
ENV["JULIA_REVISE"] = "auto"