diff options
author | Christopher Baines <mail@cbaines.net> | 2018-10-10 08:03:13 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-10-11 18:27:05 +0100 |
commit | 8af754e1087d662ab68964aa67685d48b8e7c4fc (patch) | |
tree | a4b6e0d3c07ca10a32dfb802d8072aff75944d13 /testapp/bin/setup | |
parent | 6516fc56b91f91aae7a082f662bf5cf9afd1149c (diff) | |
download | guix-demo-8af754e1087d662ab68964aa67685d48b8e7c4fc.tar guix-demo-8af754e1087d662ab68964aa67685d48b8e7c4fc.tar.gz |
Run rails new testapp --skip-bundle
Diffstat (limited to 'testapp/bin/setup')
-rwxr-xr-x | testapp/bin/setup | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/testapp/bin/setup b/testapp/bin/setup new file mode 100755 index 0000000..94fd4d7 --- /dev/null +++ b/testapp/bin/setup @@ -0,0 +1,36 @@ +#!/usr/bin/env ruby +require 'fileutils' +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 + # This script is a starting point to setup your application. + # Add necessary setup steps to this file. + + 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 |