[ First commit ]

This commit is contained in:
Mateus Cezário Barreto 2025-11-05 17:08:13 -03:00
commit 851303e97b
6 changed files with 167 additions and 0 deletions

12
config.ru Normal file
View file

@ -0,0 +1,12 @@
require_relative 'tonton_web'
# Require TonTon modules if you want
use Rack::Session::Cookie, key: 'rack.session', secret: ENV.fetch('SESSION_SECRET')
app = Rack::URLMap.new(
'/' => TonTonWeb.new
# Add TonTon modules here
)
run app