- Python (3.10 encouraged)
- React/TypeScript/Styled Components
- Install Python dependencies:
pip3 install -r requirements.txt
- Install
pre-commit
hooks:
pre-commit install
- Install npm dependencies:
npm i
- Run tests:
npm test
- Start the dev server:
npm start
We use ESLint and Ruff to check style for TypeScript and Python respectively. If eslint
isn't available on the terminal, use npm i -g eslint
to install it. Then, check for style issues:
npm run lint # Or eslint . --fix
ruff check . --fix