#!/usr/bin/env ruby require "fileutils" # path to your application root. APP_ROOT = File.expand_path("..", __dir__) def system!(*) system(*, exception: true) end FileUtils.chdir APP_ROOT do # This script is a way to setup or update your development environment automatically. # This script is idempotent, so that you can run it at anytime and get an expectable outcome. # Add necessary setup steps to this file. puts "== Installing dependencies ==" system! "gem install bundler --conservative" system("bundle check") || system!("bundle install") puts "\n== Removing any old logs and tempfiles ==" system! "bin/rails log:clear tmp:clear" # puts "\n== Copying sample files ==" # unless File.exist?('config/database.yml') # FileUtils.cp 'config/database.yml.sample', 'config/database.yml' # end puts "\n== Removing old logs and tempfiles ==" system! "bin/rails log:clear tmp:clear" puts "\n== Preparing database ==" system! "bin/rails db:schema:load" system! "bin/rails db:migrate" system! "bin/rails db:seed" puts "\n== Restarting application server if running ==" system! "bin/rails restart" puts "\n== You probably want to run 'rails fake_data' to have realistic data in dev" end