5 # path to your application root.
6 APP_ROOT = File.expand_path("..", __dir__)
9 system(*args) || abort("\n== Command #{args} failed ==")
13 # This script is a starting point to setup your application.
14 # Add necessary setup steps to this file.
16 puts "== Installing dependencies =="
17 system! "gem install bundler --conservative"
18 system("bundle check") || system!("bundle install")
20 # Install JavaScript dependencies if using Yarn
23 # puts "\n== Copying sample files =="
24 # unless File.exist?('config/database.yml')
25 # cp 'config/database.yml.sample', 'config/database.yml'
28 puts "\n== Preparing database =="
29 system! "bin/rails db:setup"
31 puts "\n== Removing old logs and tempfiles =="
32 system! "bin/rails log:clear tmp:clear"
34 puts "\n== Restarting application server =="
35 system! "bin/rails restart"