mirror of https://github.com/docusealco/docuseal
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							19 lines
						
					
					
						
							403 B
						
					
					
				
			
		
		
	
	
							19 lines
						
					
					
						
							403 B
						
					
					
				| #!/usr/bin/env ruby
 | |
| 
 | |
| ENV["RAILS_ENV"] ||= "development"
 | |
| ENV["NODE_ENV"]  ||= ENV["RAILS_ENV"]
 | |
| 
 | |
| 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
 |