A React website hosted on AWS and deployed using Github Actions, developed with Gatsby.
- Clone repository:
https://github.com/itsalysialynn/alysia-lynn.git
- Install dependencies:
yarn
- Start development server:
yarn develop
- Visit local app at http://localhost:8000/ or view GraphiQL at http://localhost:8000/\_\_\_graphql
ESLint and Prettier is used to ensure consistent code formatting and code quality throughout the codebase. A pre-commit hook automatically corrects formatting issues and adds the corrections to your commit. You can also run the checks manually:
yarn lint
yarn prettier
Jest and React Testing Library is used for unit and integration testing for React components.
yarn jest