└── flow-builder/
├── LICENCE
├── README.md
├── src/
│ ├── canvas/
│ ├── components/
│ ├── hooks/
│ ├── lib/
│ ├── nodes/
│ ├── store/
│ ├── index.css
│ ├── main.tsx
│ └── App.tsx
└── vite.config.ts- Clone the repository:
git clone https://github.com/chitrank2050/flow-builder.git
- Navigate to the project directory:
cd flow-builder - Install dependencies:
pnpm run setup
pnpm run dev# Clean project i.e remove cache + Node dir + Install packages + remove dist
pnpm run obliviate
# Clean install
pnpm run clean-setup
# Lint and formatting is automatically done throu Husky pre-commit check
pnpm run lint
pnpm run lint:fix
pnpm run format
# Build
pnpm run build
# Clean build i.e remove cache + Node dir + Install packages + remove dist before building
pnpm run clean-build- Fork the project.
- Create your feature branch (
git checkout -b feature/AmazingFeature). - Commit your changes (
git commit -m 'Add some AmazingFeature'). - Push to the branch (
git push origin feature/AmazingFeature). - Open a pull request.
Distributed under the MIT License. See LICENSE for more information.