demarches-normaliennes/bin/update
Pierre de La Morinerie 291baad96b update: don't restart the server
The server is typically started using `overmind start`: better to
handle the update and the startup separately.
2018-09-03 14:31:36 +02:00

29 lines
781 B
Ruby
Executable file

#!/usr/bin/env ruby
require 'fileutils'
include FileUtils
# path to your application root.
APP_ROOT = File.expand_path('..', __dir__)
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')
system! 'bin/yarn install'
puts "\n== Updating database =="
system! 'bin/rails db:migrate'
puts "\n== Removing old logs =="
system! 'bin/rails log:clear'
puts "\n== Done =="
puts "You can now start (or restart) the application server with `overmind start`."
end