We use Github api rest to make small Pull Request Github app
This repository uses :
- pnpm as a package manager.
- Vite as build tool.
- React.js as users interface library
- TypeScript for static type checking.
- ESLint for code linting.
- Prettier for code formatting.
- TanStack Query as data-fetching library.
- Vanilla Extract for style
- Vitest for unit tests & as tests runner
- Testing Library for ui tests
First, you must install dependencies, so run :
pnpm install
Second, you must create .env.development.local
file which contain an access token :
VITE_ACCESS_TOKEN=your_access_token_here
Finally, you can run project on localhost with :
pnpm dev
- More unit test
- Better error management to notify user
- use power of vanilla extract (variables, etc...)
- etc..