mirror of
https://github.com/resume/resume.github.com.git
synced 2025-12-21 10:59:57 -06:00
3 lines
179 B
Ruby
3 lines
179 B
Ruby
use Rack::Static, :urls => ["/css", "/images", "/js", "/views"], :root => "."
|
|
run lambda { |env| [200, { 'Content-Type' => 'text/html' }, File.open('index.html', File::RDONLY)] }
|