From 0998a876223a5bc092d7672c2c8ef10916525753 Mon Sep 17 00:00:00 2001 From: Edward Loveall Date: Sun, 10 Oct 2021 14:52:14 -0400 Subject: [PATCH] Remove postgress stuff from script/setup This app doesn't use a database so there's no point. --- script/setup | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/script/setup b/script/setup index 8012c35..6442b5e 100755 --- a/script/setup +++ b/script/setup @@ -28,18 +28,5 @@ if [ ! -f ".env" ]; then print_done fi -notice "Creating the database" -lucky db.create | indent - -notice "Verifying postgres connection" -lucky db.verify_connection | indent - -notice "Migrating the database" -lucky db.migrate | indent - -notice "Seeding the database with required and sample records" -lucky db.seed.required_data | indent -lucky db.seed.sample_data | indent - print_done notice "Run 'lucky dev' to start the app"