Mercurial > zeropaste
annotate bin/setup @ 487:5246edd5b8ad
Update gems and remove jruby support
| author | nanaya <me@nanaya.net> | 
|---|---|
| date | Tue, 17 Jan 2023 01:42:57 +0900 | 
| parents | 6cac8fcf8164 | 
| children | 92929378413e | 
| rev | line source | 
|---|---|
| 431 | 1 #!/usr/bin/env ruby | 
| 481 | 2 require "fileutils" | 
| 431 | 3 | 
| 4 # path to your application root. | |
| 485 | 5 APP_ROOT = File.expand_path("..", __dir__) | 
| 431 | 6 | 
| 7 def system!(*args) | |
| 8 system(*args) || abort("\n== Command #{args} failed ==") | |
| 9 end | |
| 10 | |
| 467 | 11 FileUtils.chdir APP_ROOT do | 
| 481 | 12 # 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. | |
| 431 | 14 # Add necessary setup steps to this file. | 
| 15 | |
| 485 | 16 puts "== Installing dependencies ==" | 
| 17 system! "gem install bundler --conservative" | |
| 18 system("bundle check") || system!("bundle install") | |
| 459 
07d6c6639adf
Upgrade to rails 5.2. RIP code style.
 nanaya <me@nanaya.pro> parents: 
431diff
changeset | 19 | 
| 431 | 20 # puts "\n== Copying sample files ==" | 
| 485 | 21 # unless File.exist?("config/database.yml") | 
| 22 # FileUtils.cp "config/database.yml.sample", "config/database.yml" | |
| 431 | 23 # end | 
| 24 | |
| 25 puts "\n== Preparing database ==" | |
| 485 | 26 system! "bin/rails db:prepare" | 
| 431 | 27 | 
| 28 puts "\n== Removing old logs and tempfiles ==" | |
| 485 | 29 system! "bin/rails log:clear tmp:clear" | 
| 431 | 30 | 
| 31 puts "\n== Restarting application server ==" | |
| 485 | 32 system! "bin/rails restart" | 
| 431 | 33 end | 
