mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
Most of this is automatically generated by the rake task: `bundle exec rake webpacker:install` Docs: https://github.com/rails/webpacker/tree/5-x-stable
19 lines
419 B
Ruby
Executable File
19 lines
419 B
Ruby
Executable File
#!/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 "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
|