require "kemal" require "stripe" require "db" require "pg" # Routes for user registration, login, and projects CRUD require "./routes/auth" require "./routes/projects" DB.open("postgres://postgres@localhost/mom") do |db| end get "/" do "welcome to the management portal" end Kemal.run