Skip to content
Snippets Groups Projects
Unverified Commit 2eedf3ae authored by Sébastien Gaya's avatar Sébastien Gaya Committed by GitHub
Browse files

Slugignore : 1re passe (#2320)


* remove useless files + added slugignore

* add .scalingo folder to slugignore

* specify node and yarn folders inside .scalingo

* need to keep node for execjs (used by autoprefixer for bootstrap)

---------

Co-authored-by: Arnaud Levy's avatarArnaud Levy <arnaud.levy@noesya.coop>
parent 892ca152
No related branches found
No related tags found
No related merge requests found
/.circleci
/.github
/.scalingo/yarn
/lib/templates
/node_modules
/spec
/test
\ No newline at end of file
#!/usr/bin/env ruby
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'config', 'environment'))
require 'delayed/command'
Delayed::Command.new(ARGV).daemonize
#!/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/webpack_runner"
APP_ROOT = File.expand_path("..", __dir__)
Dir.chdir(APP_ROOT) do
Webpacker::WebpackRunner.run(ARGV)
end
#!/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
require_relative "../config/environment"
puts "Number of websites"
puts Communication::Website.count
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment