npm install
npm start
- Create a database called
ball
- Connect to the database in
database/index.js
- Create a table called
tennis
in your schemadatabase/schema.sql
- Run the schema in the terminal
- Create a seeding function in
database/seed.js
to fill your table - Run your seeding function
- Fill out the model functions in
database/models.js
- Connect the models to your controllers
- Fill out the controllers
- Test via Postman
- Refactor your model/controller to use Sequelize