mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
11 lines
190 B
Ruby
11 lines
190 B
Ruby
ENV['RACK_ENV'] ||= 'development'
|
|
|
|
require 'bundler'
|
|
|
|
Bundler.setup
|
|
Bundler.require(:default, ENV['RACK_ENV'])
|
|
|
|
require File.expand_path('lib/mpd_client', __dir__)
|
|
|
|
run MPDClient::Webserver
|