7 lines
195 B
Plaintext
7 lines
195 B
Plaintext
|
#!/usr/bin/env rackup
|
||
|
use Rack::ContentLength
|
||
|
root = File.expand_path('./algebra', File.dirname(__FILE__))
|
||
|
app = Rack::Directory.new(root)
|
||
|
puts "Serving #{root} (see --help for options)"
|
||
|
run app
|