about summary refs log tree commit diff stats
path: root/test/dummy/bin/setup
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-30 13:29:08 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-30 13:29:08 -0500
commit0929719a845897cc8567cf972e07a69a71f0fa6f (patch)
tree2b6f69c1d906abb6e0abf8a0f1d51725bc78087d /test/dummy/bin/setup
parent01c1947537e4e23ded0c16812a7cd9d49ad88356 (diff)
downloadwittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.gz
wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.tar.bz2
wittle-0929719a845897cc8567cf972e07a69a71f0fa6f.zip
Migrate to a full rails app
Diffstat (limited to 'test/dummy/bin/setup')
-rwxr-xr-xtest/dummy/bin/setup33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/dummy/bin/setup b/test/dummy/bin/setup deleted file mode 100755 index 3cd5a9d..0000000 --- a/test/dummy/bin/setup +++ /dev/null
@@ -1,33 +0,0 @@
1#!/usr/bin/env ruby
2require "fileutils"
3
4# path to your application root.
5APP_ROOT = File.expand_path("..", __dir__)
6
7def system!(*args)
8 system(*args, exception: true)
9end
10
11FileUtils.chdir APP_ROOT do
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.
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
20 # puts "\n== Copying sample files =="
21 # unless File.exist?("config/database.yml")
22 # FileUtils.cp "config/database.yml.sample", "config/database.yml"
23 # end
24
25 puts "\n== Preparing database =="
26 system! "bin/rails db:prepare"
27
28 puts "\n== Removing old logs and tempfiles =="
29 system! "bin/rails log:clear tmp:clear"
30
31 puts "\n== Restarting application server =="
32 system! "bin/rails restart"
33end