]> cat aescling's git repositories - mastodon.git/blob - bin/setup
Filter incoming Announce activities by relation to local activity (#10041)
[mastodon.git] / bin / setup
1 #!/usr/bin/env ruby
2 require 'fileutils'
3 include FileUtils
4
5 # path to your application root.
6 APP_ROOT = File.expand_path('..', __dir__)
7
8 def system!(*args)
9 system(*args) || abort("\n== Command #{args} failed ==")
10 end
11
12 chdir APP_ROOT do
13 # This script is a starting point to setup your application.
14 # Add necessary setup steps to this file.
15
16 puts '== Installing dependencies =='
17 system! 'gem install bundler --conservative'
18 system('bundle check') || system!('bundle install')
19 system!('yarn install')
20
21 # puts "\n== Copying sample files =="
22 # unless File.exist?('config/database.yml')
23 # cp 'config/database.yml.sample', 'config/database.yml'
24 # end
25
26 puts "\n== Preparing database =="
27 system! 'bin/rails db:setup'
28
29 puts "\n== Removing old logs and tempfiles =="
30 system! 'bin/rails log:clear tmp:clear'
31
32 puts "\n== Restarting application server =="
33 system! 'bin/rails restart'
34 end
This page took 0.065845 seconds and 4 git commands to generate.