2017-05-12 16:23:41 +02:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
require 'fileutils'
|
|
|
|
include 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
|
|
|
|
|
|
|
|
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')
|
2018-09-03 14:03:58 +02:00
|
|
|
system! 'bin/yarn install'
|
2018-05-22 16:01:37 +02: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 =="
|
|
|
|
puts "You can now start (or restart) the application server with `overmind start`."
|
2017-05-12 16:23:41 +02:00
|
|
|
end
|