main
1#!/usr/bin/env ruby
2require 'fileutils'
3include FileUtils
4
5# path to your application root.
6APP_ROOT = File.expand_path('..', __dir__)
7
8def system!(*args)
9 system(*args) || abort("\n== Command #{args} failed ==")
10end
11
12chdir APP_ROOT do
13 # This script is a way to update your development environment automatically.
14 # Add necessary update steps to this file.
15
16 puts '== Installing dependencies =='
17 system('bundle check') || system!('bundle install')
18
19 # Install JavaScript dependencies if using Yarn
20 system('bin/yarn')
21
22 puts "\n== Updating database =="
23 system! 'bin/rails db:migrate'
24
25 puts "\n== Removing old logs and tempfiles =="
26 system! 'bin/rails log:clear tmp:clear'
27
28 puts "\n== Restarting application server =="
29 system! 'bin/rails restart'
30end