julia> Pkg.clone("https://github.com/essenciary/Genie.jl") # Get Genie
julia> using Genie # Bring Genie into scope
julia> Genie.REPL.new_app("your_cool_new_app") # Genie will create a new app called "your_cool_new_app" and start an interactive session.
# append this to /your_cool_new_app/config/routes.jl
route("/hello") do
"Hello - Welcome to Genie!"
end
genie> AppServer.startup()
Listening on 0.0.0.0:8000...
# Visit http://localhost:8000/hello in your favorite browser
Familiar HTML based, flexible and fast (compiled fast!) view templates.
Read moreFork Genie on GitHub and add your favorite new features or squash some bugs.
Visit GitHub page