clarion/bin/setup

35 lines
920 B
Plaintext
Raw Normal View History

#!/usr/bin/env ruby
require 'pathname'
2019-04-28 02:02:09 +03:00
require 'fileutils'
include FileUtils
# path to your application root.
2019-04-28 02:02:09 +03:00
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
2019-04-28 02:02:09 +03:00
def system!(*args)
system(*args) || abort("\n== Command #{args} failed ==")
end
chdir APP_ROOT do
# This script is a starting point to setup your application.
2019-04-28 02:02:09 +03:00
# Add necessary setup steps to this file.
2019-04-28 02:02:09 +03:00
puts '== Installing dependencies =='
system! 'gem install bundler --conservative'
system('bundle check') || system!('bundle install')
# puts "\n== Copying sample files =="
2019-04-28 02:02:09 +03:00
# unless File.exist?('config/database.yml')
# cp 'config/database.yml.sample', 'config/database.yml'
# end
puts "\n== Preparing database =="
2019-04-28 02:02:09 +03:00
system! 'bin/rails db:setup'
puts "\n== Removing old logs and tempfiles =="
2019-04-28 02:02:09 +03:00
system! 'bin/rails log:clear tmp:clear'
puts "\n== Restarting application server =="
2019-04-28 02:02:09 +03:00
system! 'bin/rails restart'
end