Sha256: fc888b1ecac6896cb5a5420a6747e8ecb5cbbf994d81ccf77f934d2beaab1dc7

Contents?: true

Size: 1.04 KB

Versions: 12

Compression:

Stored size: 1.04 KB

Contents

#!/usr/bin/env ruby
require "fileutils"

# path to your application root.
APP_ROOT = File.expand_path('..', __dir__)

def system!(*args)
  system(*args) || abort("\n== Command #{args} failed ==")
end

FileUtils.chdir APP_ROOT do
  # This script is a way to set up or update your development environment automatically.
  # This script is idempotent, so that you can run it at any time 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')

  # Install JavaScript dependencies
  # system('bin/yarn')

  # puts "\n== Copying sample files =="
  # unless File.exist?('config/database.yml')
  #   FileUtils.cp 'config/database.yml.sample', 'config/database.yml'
  # end

  puts "\n== Preparing database =="
  system! 'bin/rails db:prepare'

  puts "\n== Removing old logs and tempfiles =="
  system! 'bin/rails log:clear tmp:clear'

  puts "\n== Restarting application server =="
  system! 'bin/rails restart'
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
boring_generators-0.15.0 tmp/templates/app_template/bin/setup
boring_generators-0.14.0 tmp/templates/app_template/bin/setup
boring_generators-0.13.0 tmp/templates/app_template/bin/setup
boring_generators-0.12.0 tmp/templates/app_template/bin/setup
boring_generators-0.11.0 tmp/templates/app_template/bin/setup
boring_generators-0.10.0 tmp/templates/app_template/bin/setup
boring_generators-0.9.0 tmp/templates/app_template/bin/setup
boring_generators-0.8.0 tmp/templates/app_template/bin/setup
boring_generators-0.7.0 tmp/templates/app_template/bin/setup
boring_generators-0.6.0 tmp/templates/app_template/bin/setup
boring_generators-0.5.0 tmp/templates/app_template/bin/setup
boring_generators-0.4.0 tmp/templates/app_template/bin/setup