mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-09 09:12:19 +00:00
16 lines
394 B
Ruby
Executable file
16 lines
394 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
require "pathname"
|
|
require "bundler/setup"
|
|
require "webpacker"
|
|
require "webpacker/webpack_runner"
|
|
|
|
ENV["RAILS_ENV"] ||= "development"
|
|
ENV["NODE_ENV"] ||= ENV["RAILS_ENV"]
|
|
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", Pathname.new(__FILE__).realpath)
|
|
|
|
APP_ROOT = File.expand_path("..", __dir__)
|
|
Dir.chdir(APP_ROOT) do
|
|
Webpacker::WebpackRunner.run(ARGV)
|
|
end
|