Remove postgress stuff from script/setup

This app doesn't use a database so there's no point.
This commit is contained in:
Edward Loveall 2021-10-10 14:52:14 -04:00
parent fba87c1076
commit 0998a87622
No known key found for this signature in database
GPG Key ID: 789A4AE983AC8901
1 changed files with 0 additions and 13 deletions

View File

@ -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"