From 846f7aafae0afae17ead76df4559af2be75c463a Mon Sep 17 00:00:00 2001 From: Eric Date: Mon, 22 Jun 2020 16:48:59 -0500 Subject: [PATCH] Add db:seed to setup --- bin/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/setup b/bin/setup index 17ff1eb7..bb746264 100755 --- a/bin/setup +++ b/bin/setup @@ -38,7 +38,7 @@ FileUtils.chdir APP_ROOT do end puts "\n== Preparing database ==" - system! 'bin/rails db:prepare' + system! 'bin/rails db:prepare db:seed' puts "\n== Removing old logs and tempfiles ==" system! 'bin/rails log:clear tmp:clear'