Sinatra-like Ruby web framework with subdomain routing
RESTful API for generating random UUIDs
Local: api.localhost:3000
Production: api.dsl.stackforge.ai
Example blog with Slim templates and UI components
Local: blog.localhost:3000
Production: blog.dsl.stackforge.ai
Admin panel with data tables and management features
Local: admin.localhost:3000
Production: admin.dsl.stackforge.ai
class MyApp < DSLFramework::Router get '/' do @title = "Hello World" slim :homepage end get '/users/:id' do json({ id: params[:id], name: "User" }) end post '/users' do # Create user redirect '/users' endend