~cytrogen/masto-fe

ref: b19a69560829eaeca1e17c542b33b9f29807d94c masto-fe/bin/webpack-dev-server -rwxr-xr-x 438 bytes
b19a6956 — fusagiko / takayamaki migrate test for `GET /api/v1/accounts/{account_id}` to request spec (#25322) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env ruby

ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
ENV["NODE_ENV"]  ||= "development"

require "pathname"
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
  Pathname.new(__FILE__).realpath)

require "rubygems"
require "bundler/setup"

require "webpacker"
require "webpacker/dev_server_runner"

APP_ROOT = File.expand_path("..", __dir__)
Dir.chdir(APP_ROOT) do
  Webpacker::DevServerRunner.run(ARGV)
end