How to setup a postgres db with knex
- Create a db on my computer
createdb <name_of_database>
- Create tables in the db using the migration files
knex migrate:latest
- Add data to the database and tables
knex seed:run
How to setup a postgres db with knex
createdb <name_of_database>knex migrate:latestknex seed:run