This repository contains the frontend built with Nextjs and Typescript.
"Household accounts" app provides managing and coordinating assets across accounts at the household level.
To run the app
npm run dev
This will start the application on 'http://localhost:3000'
household-accounts-UI/
├── app/
│ ├── [lng]/ # APP Routing
│ │ ├── (calendar)/
│ │ ├── login/
│ │ └── app.tsx # Entry point
│ ├── lib/
│ ├── login-process/
│ └── ui/
│ ├── sass/
│ ├── shared-components/
│ ├── calendar-page.tsx/
│ ├── footer.tsx/
│ └── header.tsx/
├── public/
│ ├── assets/
│ └── manifest.json
├── .env
├── middleware.ts
├── next.config.mjs
├── package.json
├── tailwind.config.ts
├── tsconfig.json
└── vercel.json
- Fort the repository.
- Create a new branch:
git checkout -b feature/your-feautre-name
ondevelopment
branch. - Whatever work you do, after it has been tested locally by hand and unit/integration tests, you will bump the major, minor, or patch versions of package.json file based on the scope of work completed. Rule of thumb is:
- Breaking changes = bump major version
- Additional feature(s) with no breaking changes = bump minor version
- Chore or bug fix = bump patch version
- Make your changes an commit them:
git commit -m 'Add some feature'
- Push to the branch:
git push origin feature/your-feature-name
- Open a pull request.