mirror of
https://gitlab.com/Anson-Projects/spacesystemscalc.git
synced 2025-07-25 15:41:32 +00:00
bin
config
env
dev.jl
global.jl
prod.jl
test.jl
initializers
lib
public
src
test
.gitattributes
.gitignore
Project.toml
bootstrap.jl
routes.jl
11 lines
306 B
Julia
Executable File
11 lines
306 B
Julia
Executable File
using Genie, Logging
|
|
|
|
Genie.Configuration.config!(
|
|
server_port = 8000,
|
|
server_host = "127.0.0.1",
|
|
log_level = Logging.Debug,
|
|
log_to_file = true,
|
|
server_handle_static_files = true
|
|
)
|
|
|
|
ENV["JULIA_REVISE"] = "off" |