In Genie, I have the following code in routes.jl:
using Genie.Router
route("/") do
  serve_static_file("welcome.html")
end
I ran the server by typing up(). However, when I visit the index page, I get a 404 message:
julia> up()
┌ Info: 
└ Web Server starting at http://127.0.0.1:8000 
Genie.AppServer.ServersCollection(Task (runnable) @0x00000001765dbec0, nothing)
julia> ┌ Error: GET / 404
└ @ Genie.Router ~/.julia/packages/Genie/UxbVJ/src/Router.jl:163
I tried stopping the server and re-starting it but the issue persists. This happened to me at least 3-4 times now. I got it working in the past but it was not clear what actually worked.