A Next.js application serving a list of quotes using the Notion API.
- Clone the repo
git clone [email protected]:yusufsheiqh/quotes.git
- Install packages in
quotes
directory
npm i
To run the application for local development:
npm run dev
npm run dev:docker # using Docker
Then visit http://localhost:3000.
To run all the tests:
npm run test
To run unit tests:
npm run test:unit
To run acceptance tests:
npm run test:acceptance
To 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 browser
To run the formatter (using Prettier):
npm run format
To run the linter (using ESLint):
npm run lint