mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-02-05 16:01:10 +00:00
8 lines
244 B
Ruby
8 lines
244 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
require 'rack/handler'
|
|
Rack::Handler::WEBrick = Rack::Handler.get(:puma)
|
|
|
|
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
|
require File.expand_path('../../config/boot', __FILE__)
|
|
require 'rails/commands'
|