This repository has been archived on 2025-11-13. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
tonton-web/tonton_web.rb

17 lines
No EOL
338 B
Ruby

require 'gollum/app'
require 'sinatra/flash'
require "sqlite3"
class TonTonWeb < Sinatra::Base
set :host_authorization, { permitted_hosts: ['localhost', 'mytonton.com.br'] }
set :sessions, true
get '/' do
redirect "/readme.md"
end
get '/:name' do
markdown File.read(params['name']), layout_engine: :erb, layout: true
end
end