diff --git a/twenty-cli/lib/twenty-cli/command/up.rb b/twenty-cli/lib/twenty-cli/command/up.rb index 1057ebc..bcdf7b0 100644 --- a/twenty-cli/lib/twenty-cli/command/up.rb +++ b/twenty-cli/lib/twenty-cli/command/up.rb @@ -11,7 +11,8 @@ class Twenty::Command::Up < Twenty::Command def run_command server = WEBrick::HTTPServer.new(server_options) - server.mount '/connections.json', Twenty::Servlet::Connections + server.mount '/servlet/connections', Twenty::Servlet::Connections + server.mount '/servlet/issues', Twenty::Servlet::Issues trap(:SIGINT) { server.shutdown } server.start end