require "kemal" require "clear" require "stripe" # Routes for user registration, login, and projects CRUD require "./routes/auth" require "./routes/projects" Clear::SQL.init("postgres://postgres@localhost/my_database", connection_pool_size: 5) get "/" do "welcome to the management portal" end Kemal.run