A Next.js application serving a list of quotes using the Notion API.
- Clone the repo
git clone git@github.com:yusufsheiqh/quotes.git- Install packages in
quotesdirectory
npm iTo run the application for local development:
npm run dev
npm run dev:docker # using DockerThen visit http://localhost:3000.
To run all the tests:
npm run testTo run unit tests:
npm run test:unitTo run acceptance tests:
npm run test:acceptanceTo run journey tests:
npm run test:journey # to automatically run the tests in headless mode
npm run test:journey:open # to interactively run the tests in a browserTo run the formatter (using Prettier):
npm run formatTo run the linter (using ESLint):
npm run lint