comparison bin/setup @ 495:92929378413e

Update to latest rails
author nanaya <me@nanaya.net>
date Sun, 15 Dec 2024 22:18:06 +0900
parents 6cac8fcf8164
children
comparison
equal deleted inserted replaced
494:e508d3226214 495:92929378413e
1 #!/usr/bin/env ruby 1 #!/usr/bin/env ruby
2 require "fileutils" 2 require "fileutils"
3 3
4 # path to your application root.
5 APP_ROOT = File.expand_path("..", __dir__) 4 APP_ROOT = File.expand_path("..", __dir__)
6 5
7 def system!(*args) 6 def system!(*args)
8 system(*args) || abort("\n== Command #{args} failed ==") 7 system(*args, exception: true)
9 end 8 end
10 9
11 FileUtils.chdir APP_ROOT do 10 FileUtils.chdir APP_ROOT do
12 # This script is a way to set up or update your development environment automatically. 11 # This script is a way to set up or update your development environment automatically.
13 # This script is idempotent, so that you can run it at any time and get an expectable outcome. 12 # This script is idempotent, so that you can run it at any time and get an expectable outcome.
14 # Add necessary setup steps to this file. 13 # Add necessary setup steps to this file.
15 14
16 puts "== Installing dependencies ==" 15 puts "== Installing dependencies =="
17 system! "gem install bundler --conservative"
18 system("bundle check") || system!("bundle install") 16 system("bundle check") || system!("bundle install")
19 17
20 # puts "\n== Copying sample files ==" 18 # puts "\n== Copying sample files =="
21 # unless File.exist?("config/database.yml") 19 # unless File.exist?("config/database.yml")
22 # FileUtils.cp "config/database.yml.sample", "config/database.yml" 20 # FileUtils.cp "config/database.yml.sample", "config/database.yml"
26 system! "bin/rails db:prepare" 24 system! "bin/rails db:prepare"
27 25
28 puts "\n== Removing old logs and tempfiles ==" 26 puts "\n== Removing old logs and tempfiles =="
29 system! "bin/rails log:clear tmp:clear" 27 system! "bin/rails log:clear tmp:clear"
30 28
31 puts "\n== Restarting application server ==" 29 unless ARGV.include?("--skip-server")
32 system! "bin/rails restart" 30 puts "\n== Starting development server =="
31 STDOUT.flush # flush the output before exec(2) so that it displays
32 exec "bin/dev"
33 end
33 end 34 end