demarches-normaliennes/bin/update

41 lines
1.2 KiB
Text
Raw Normal View History

#!/usr/bin/env ruby
require 'fileutils'
# path to your application root.
2018-05-22 16:01:37 +02:00
APP_ROOT = File.expand_path('..', __dir__)
def system!(*args)
system(*args) || abort("\n== Command #{args} failed ==")
end
FileUtils.chdir APP_ROOT do
# This script is a way to update your development environment automatically.
# Add necessary update steps to this file.
puts '== Installing dependencies =='
system! 'gem install bundler --conservative'
system('bundle check') || system!('bundle install')
system! 'node --version'
2018-09-03 14:03:58 +02:00
system! 'bin/yarn install'
system! 'bin/yarn clean'
2018-05-22 16:01:37 +02:00
if ENV["SKIP_UPDATE_WEBDRIVER"]
puts "\n== Ignoring webdrivers update because of local configuration. You may need to update it manually.=="
else
puts "\n== Updating webdrivers =="
system! 'RAILS_ENV=test bin/rails webdrivers:chromedriver:update'
end
puts "\n== Updating database =="
system! 'bin/rails db:migrate'
puts "\n== Running after_party tasks =="
system! 'bin/rails after_party:run'
puts "\n== Removing old logs =="
system! 'bin/rails log:clear'
puts "\n== Done =="
2020-07-09 10:44:50 +02:00
puts "You can now start (or restart) the application server with `bin/rails server`."
end