You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
984 B

9 months ago
6 months ago
9 months ago
6 months ago
9 months ago
6 months ago
9 months ago
6 months ago
9 months ago
6 months ago
9 months ago
6 months ago
9 months ago
  1. #!/usr/bin/env ruby
  2. require 'fileutils'
  3. # path to your application root.
  4. APP_ROOT = File.expand_path('..', __dir__)
  5. def system!(*args)
  6. system(*args, exception: true)
  7. end
  8. FileUtils.chdir APP_ROOT do
  9. # This script is a way to set up or update your development environment automatically.
  10. # This script is idempotent, so that you can run it at any time and get an expectable outcome.
  11. # Add necessary setup steps to this file.
  12. puts '== Installing dependencies =='
  13. system! 'gem install bundler --conservative'
  14. system('bundle check') || system!('bundle install')
  15. # puts "\n== Copying sample files =="
  16. # unless File.exist?("config/database.yml")
  17. # FileUtils.cp "config/database.yml.sample", "config/database.yml"
  18. # end
  19. puts "\n== Preparing database =="
  20. system! 'bin/rails db:prepare'
  21. puts "\n== Removing old logs and tempfiles =="
  22. system! 'bin/rails log:clear tmp:clear'
  23. puts "\n== Restarting application server =="
  24. system! 'bin/rails restart'
  25. end