about summary refs log tree commit diff stats
path: root/test/dummy/bin/setup
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-12-07 11:49:49 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2024-12-07 11:49:49 -0500
commit56f5841d4b9c12296cdfcaeff174b2627d59afc8 (patch)
tree4f7da4ebbe5ee15a1594b26466ed78e2cf10de35 /test/dummy/bin/setup
parentc1b0443ba2aebdbd39291ddab0c189f3f4831320 (diff)
downloadpokeviewer-56f5841d4b9c12296cdfcaeff174b2627d59afc8.tar.gz
pokeviewer-56f5841d4b9c12296cdfcaeff174b2627d59afc8.tar.bz2
pokeviewer-56f5841d4b9c12296cdfcaeff174b2627d59afc8.zip
Migrate to full rails app
Diffstat (limited to 'test/dummy/bin/setup')
-rwxr-xr-xtest/dummy/bin/setup38
1 files changed, 0 insertions, 38 deletions
diff --git a/test/dummy/bin/setup b/test/dummy/bin/setup deleted file mode 100755 index 78c4e86..0000000 --- a/test/dummy/bin/setup +++ /dev/null
@@ -1,38 +0,0 @@
1#!/usr/bin/env ruby
2require 'pathname'
3require 'fileutils'
4include FileUtils
5
6# path to your application root.
7APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
8
9def system!(*args)
10 system(*args) || abort("\n== Command #{args} failed ==")
11end
12
13chdir APP_ROOT do
14 # This script is a starting point to setup your application.
15 # Add necessary setup steps to this file.
16
17 puts '== Installing dependencies =='
18 system! 'gem install bundler --conservative'
19 system('bundle check') || system!('bundle install')
20
21 # Install JavaScript dependencies if using Yarn
22 # system('bin/yarn')
23
24
25 # puts "\n== Copying sample files =="
26 # unless File.exist?('config/database.yml')
27 # cp 'config/database.yml.sample', 'config/database.yml'
28 # end
29
30 puts "\n== Preparing database =="
31 system! 'bin/rails db:setup'
32
33 puts "\n== Removing old logs and tempfiles =="
34 system! 'bin/rails log:clear tmp:clear'
35
36 puts "\n== Restarting application server =="
37 system! 'bin/rails restart'
38end