1
0
mirror of https://gitlab.com/Anson-Projects/spacesystemscalc.git synced 2025-07-25 15:41:32 +00:00
Files
bin
config
env
dev.jl
global.jl
prod.jl
test.jl
initializers
lib
public
src
test
.gitattributes
.gitignore
Project.toml
bootstrap.jl
routes.jl
Space-Systems-Calc/config/env/test.jl
2022-08-22 20:18:28 -06:00

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"