You can see a live version in https://family-calendar-dfejgelis.vercel.app/
- Clone this repository
- Install dependencies:
npm install
- Setup secrets and configuration.
cp .env .env.local
vim .env.local # Fill values here
- Start development server:
npm run start
- We use Prettier for consistent code formatting and ESLint for code linting and enforcing style rules.
- Husky automatically runs these checks before every commit.
- To format and lint your code manually:
npm run lint
Tip: Consider using a code editor extension like ESLint and Prettier integrations for real-time feedback and automatic formatting.
To create a commit with Commitizen:
git cz commit
# or
cz commit
npm test
Launches the test runner in the interactive watch mode.
This project was bootstrapped with Create React App.