42
|
1 #!/usr/bin/env ruby
|
44
|
2 require "pathname"
|
72
|
3 require "fileutils"
|
|
4 include FileUtils
|
42
|
5
|
|
6 # path to your application root.
|
72
|
7 APP_ROOT = Pathname.new File.expand_path("../../", __FILE__)
|
42
|
8
|
72
|
9 def system!(*args)
|
|
10 system(*args) || abort("\n== Command #{args} failed ==")
|
|
11 end
|
|
12
|
|
13 chdir APP_ROOT do
|
42
|
14 # This script is a starting point to setup your application.
|
72
|
15 # Add necessary setup steps to this file.
|
42
|
16
|
|
17 puts "== Installing dependencies =="
|
72
|
18 system! "gem install bundler --conservative"
|
|
19 system("bundle check") || system!("bundle install")
|
42
|
20
|
|
21 # puts "\n== Copying sample files =="
|
72
|
22 # unless File.exist?('config/database.yml')
|
|
23 # cp 'config/database.yml.sample', 'config/database.yml'
|
42
|
24 # end
|
|
25
|
|
26 puts "\n== Preparing database =="
|
72
|
27 system! "bin/rails db:setup"
|
42
|
28
|
|
29 puts "\n== Removing old logs and tempfiles =="
|
72
|
30 system! "bin/rails log:clear tmp:clear"
|
42
|
31
|
|
32 puts "\n== Restarting application server =="
|
72
|
33 system! "bin/rails restart"
|
42
|
34 end
|