1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actiontext/test/dummy/bin/setup

37 lines
958 B
Text
Raw Normal View History

2018-02-08 12:01:46 -05:00
#!/usr/bin/env ruby
require "fileutils"
2018-02-08 12:01:46 -05:00
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
2019-08-09 17:30:15 -04:00
# This script is a starting point to set up your application.
2020-02-12 13:31:19 -05:00
# Add necessary setup steps to this file.
2018-02-08 12:01:46 -05:00
puts '== Installing dependencies =='
system! 'gem install bundler --conservative'
system('bundle check') || system!('bundle install')
# Install JavaScript dependencies if using Yarn
# system('bin/yarn')
# puts "\n== Copying sample files =="
# unless File.exist?('config/database.yml')
# cp 'config/database.yml.sample', 'config/database.yml'
# end
puts "\n== Preparing database =="
system! 'bin/rails db:setup'
puts "\n== Removing old logs and tempfiles =="
system! 'bin/rails log:clear tmp:clear'
puts "\n== Restarting application server =="
system! 'bin/rails restart'
end