The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

35 lines
909 B

  1. #!/usr/bin/env ruby
  2. require 'fileutils'
  3. include FileUtils
  4. # path to your application root.
  5. APP_ROOT = File.expand_path('..', __dir__)
  6. def system!(*args)
  7. system(*args) || abort("\n== Command #{args} failed ==")
  8. end
  9. chdir APP_ROOT do
  10. # This script is a starting point to setup your application.
  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. system!('yarn install')
  16. # puts "\n== Copying sample files =="
  17. # unless File.exist?('config/database.yml')
  18. # cp 'config/database.yml.sample', 'config/database.yml'
  19. # end
  20. puts "\n== Preparing database =="
  21. system! 'bin/rails db:setup'
  22. puts "\n== Removing old logs and tempfiles =="
  23. system! 'bin/rails log:clear tmp:clear'
  24. puts "\n== Restarting application server =="
  25. system! 'bin/rails restart'
  26. end