-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.ru
40 lines (32 loc) · 870 Bytes
/
config.ru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# config.ru
require 'bundler'
Bundler.require
require "react/source"
opal = Opal::Server.new {|s|
s.append_path './'
s.append_path File.dirname(::React::Source.bundled_path_for("react-with-addons.js"))
s.main = 'example'
s.debug = true
s.index_path = "index.html.erb"
}
map opal.source_maps.prefix do
run opal.source_maps
end
map '/assets' do
run opal.sprockets
end
get '/comments.json' do
comments = JSON.parse(open("./_comments.json").read)
JSON.generate(comments)
end
post "/comments.json" do
comments = JSON.parse(open("./_comments.json").read)
comments << JSON.parse(request.body.read)
File.write('./_comments.json', JSON.pretty_generate(comments, :indent => ' '))
JSON.generate(comments)
end
map '/' do
# Sourcemap won't work if only `assets/example.js` is loaded
use Opal::Server::Index, opal
end
run Sinatra::Application