This is the backend for the Goes Ever On site. It is a REST API built with Node, Express, and Knex. It is deployed on Render.
- /shows
- GET: returns all shows
- POST: adds a new show
- /shows/:showId
- GET: returns a show by id
- /auth/login
- POST: logs in a user
- Start the application
npm start
- Start the application in development mode
npm run start:dev
- Run the tests
npm test
- Run the tests in watch mode
npm run test:watch
- Create a commit
npm run commit