From 901ef42bada2946f6d45d367d6aa800c106fecc8 Mon Sep 17 00:00:00 2001 From: Vanessa Fotso Date: Mon, 2 Oct 2023 15:15:27 -0400 Subject: [PATCH] update vulcan setup to also load the sample data Signed-off-by: Vanessa Fotso --- bin/setup | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/setup b/bin/setup index 3b392888..b2407747 100755 --- a/bin/setup +++ b/bin/setup @@ -28,6 +28,9 @@ FileUtils.chdir APP_ROOT do puts "\n== Preparing database ==" system! 'bin/rails db:create db:schema:load' + puts "\n== Seeding database ==" + system! 'bin/rails db:seed' + puts "\n== Removing old logs and tempfiles ==" system! 'bin/rails log:clear tmp:clear'