diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-12-07 21:14:52 +0000 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-12-07 21:14:52 +0000 |
commit | 295dd1906a98913275145c5b9cc403f1e76cfd33 (patch) | |
tree | f45d7721c9a138b743ada905a12596f050a7473d /rails/test/dummy/bin/setup | |
parent | 460edd4191229635e86c0e3781a361126c140ca9 (diff) | |
parent | a37605e3d7d17e322a9cf2a497768f6fd8b5d0a3 (diff) | |
download | lingo-295dd1906a98913275145c5b9cc403f1e76cfd33.tar.gz lingo-295dd1906a98913275145c5b9cc403f1e76cfd33.tar.bz2 lingo-295dd1906a98913275145c5b9cc403f1e76cfd33.zip |
Merge branch 'main' of /srv/git/lingo into main
Diffstat (limited to 'rails/test/dummy/bin/setup')
-rwxr-xr-x | rails/test/dummy/bin/setup | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/rails/test/dummy/bin/setup b/rails/test/dummy/bin/setup deleted file mode 100755 index ec47b79..0000000 --- a/rails/test/dummy/bin/setup +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | #!/usr/bin/env ruby | ||
2 | require "fileutils" | ||
3 | |||
4 | # path to your application root. | ||
5 | APP_ROOT = File.expand_path("..", __dir__) | ||
6 | |||
7 | def system!(*args) | ||
8 | system(*args) || abort("\n== Command #{args} failed ==") | ||
9 | end | ||
10 | |||
11 | FileUtils.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" | ||
33 | end | ||