2017-05-12 16:23:41 +02:00
|
|
|
#!/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__)
|
2017-05-12 16:23:41 +02:00
|
|
|
|
|
|
|
def system!(*args)
|
|
|
|
system(*args) || abort("\n== Command #{args} failed ==")
|
|
|
|
end
|
|
|
|
|
2020-07-09 10:45:04 +02:00
|
|
|
FileUtils.chdir APP_ROOT do
|
2017-05-12 16:23:41 +02:00
|
|
|
# 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')
|
2022-02-23 13:44:29 +01:00
|
|
|
system! 'node --version'
|
2018-09-03 14:03:58 +02:00
|
|
|
system! 'bin/yarn install'
|
2022-02-23 13:44:29 +01:00
|
|
|
system! 'bin/yarn clean'
|
2018-05-22 16:01:37 +02:00
|
|
|
|
2023-08-30 10:08:33 +02:00
|
|
|
if ENV["UPDATE_WEBDRIVER"]
|
2022-11-28 14:27:29 +01:00
|
|
|
puts "\n== Updating webdrivers =="
|
2023-08-30 10:08:33 +02:00
|
|
|
puts "\nyou must add ~/.local/bin to your path"
|
|
|
|
system! 'npx @puppeteer/browsers clear --path ~/.local/bin/headless_browsers'
|
|
|
|
|
|
|
|
system! 'npx @puppeteer/browsers install chromedriver --path ~/.local/bin/headless_browsers'
|
|
|
|
system! 'npx @puppeteer/browsers install chrome --path ~/.local/bin/headless_browsers'
|
|
|
|
|
|
|
|
system! 'rm -f ~/.local/bin/chromedriver && ln -s $(find ~/.local/bin/headless_browsers -type f -name chromedriver) ~/.local/bin/chromedriver'
|
|
|
|
system! 'rm -f ~/.local/bin/chrome && ln -s $(find ~/.local/bin/headless_browsers -type f -name chrome) ~/.local/bin/chrome'
|
2022-11-28 14:27:29 +01:00
|
|
|
end
|
2019-11-05 15:47:55 +01:00
|
|
|
|
2017-05-12 16:23:41 +02:00
|
|
|
puts "\n== Updating database =="
|
|
|
|
system! 'bin/rails db:migrate'
|
|
|
|
|
2019-03-28 11:04:00 +01:00
|
|
|
puts "\n== Running after_party tasks =="
|
|
|
|
system! 'bin/rails after_party:run'
|
|
|
|
|
2018-09-03 14:04:38 +02:00
|
|
|
puts "\n== Removing old logs =="
|
|
|
|
system! 'bin/rails log:clear'
|
2017-05-12 16:23:41 +02:00
|
|
|
|
2018-09-03 14:05:35 +02:00
|
|
|
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`."
|
2017-05-12 16:23:41 +02:00
|
|
|
end
|