102827ff8d
So that the gemfile.lock does not change across invocations
16 lines
328 B
Ruby
Executable File
16 lines
328 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
APP_PATH = File.expand_path("../config/application", __dir__)
|
|
|
|
require_relative "../lib/fizzy"
|
|
|
|
if Fizzy.saas?
|
|
ENV["BUNDLE_WITH"] = [ ENV["BUNDLE_WITH"] , "saas" ].compact.join(",")
|
|
end
|
|
|
|
require_relative "../config/boot"
|
|
|
|
puts "SaaS version (#{Fizzy.db_adapter})" if Fizzy.saas?
|
|
|
|
require "rails/commands"
|
|
|