mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			474 B
		
	
	
	
		
			Ruby
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			474 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 'rubygems'
 | |
| require 'bundler/setup'
 | |
| 
 | |
| require 'webpacker'
 | |
| require 'webpacker/webpack_runner'
 | |
| 
 | |
| APP_ROOT = File.expand_path('..', __dir__)
 | |
| Dir.chdir(APP_ROOT) do
 | |
|   Webpacker::WebpackRunner.run(ARGV)
 | |
| end
 | 
