This directory contains the source code for the Infra Dashboard.
- Install the latest version of Node.js
brew install node
- Install the following extensions if using Visual Studio Code:
- ESLint
- Prettier
- Tailwind CSS IntelliSense
- Enable Format on Save in settings
Follow the instructions in the test config file.
npm install
npm run dev
npm run build
npm start
Linting is done via ESLint
npm run lint
Code is formatted using Prettier
To check for issues:
npm run format
To fix:
npm run format:fix