Discover and download 150+ curated n8n workflows. Built for India, by India 🇮🇳
FlowKit is a production-ready, open-source n8n workflow library platform that helps you discover, share, and deploy automation workflows.
- 150+ Curated Workflows - Hand-picked, tested, and documented workflows
- AI Workflow Builder - Generate n8n workflows using Google Gemini AI
- Advanced Search & Filters - Find workflows by category, difficulty, tags, and more
- Admin Panel - Complete CRUD interface for managing workflows
- Responsive Design - Mobile-first design with Tailwind CSS
- Production Ready - Built with Next.js 14, TypeScript, and Prisma ORM
- Frontend: Next.js 14 (App Router), TypeScript, Tailwind CSS, shadcn/ui
- Backend: Next.js API Routes, Prisma ORM
- Database: MySQL (Aiven Cloud)
- AI: Google Gemini 2.0 Flash API
- Auth: NextAuth.js
- Deployment: Vercel-ready
-
Clone the repository:
git clone https://github.com/yourusername/flowkit.git cd flowkit -
Install dependencies:
npm install
-
Set up environment variables:
Copy
.env.exampleto.envand fill in your values:DATABASE_URL="mysql://user:password@host:port/flowkit" NEXTAUTH_URL="http://localhost:3000" NEXTAUTH_SECRET="your-super-secret-key" GEMINI_API_KEY="your-gemini-api-key"
-
Set up the database:
npx prisma generate npx prisma db push npx prisma db seed
-
Run the development server:
npm run dev
-
Open http://localhost:3000 in your browser
- Email: admin@flowkit.in
- Password: admin123
flowkit/
├── prisma/
│ ├── schema.prisma # Database schema
│ └── seed.ts # Seed data
├── src/
│ ├── app/
│ │ ├── (public)/ # Public pages
│ │ ├── admin/ # Admin panel
│ │ └── api/ # API routes
│ ├── components/
│ │ ├── admin/ # Admin components
│ │ ├── layout/ # Layout components
│ │ ├── workflow/ # Workflow components
│ │ └── ui/ # shadcn/ui components
│ ├── lib/
│ │ ├── prisma.ts # Prisma client
│ │ ├── auth.ts # NextAuth config
│ │ └── gemini.ts # Gemini AI client
│ └── types/ # TypeScript types
└── public/
└── thumbnails/ # Workflow thumbnails
- Browse Workflows: Explore 150+ curated n8n workflows
- Search & Filter: Find workflows by category, difficulty, tags, and credentials
- Workflow Details: View comprehensive information including setup steps, use cases, and JSON
- Copy & Download: Easily copy workflow JSON or download as file
- AI Builder: Generate custom workflows using natural language
- Dashboard: View statistics and recent workflows
- Workflow Management: Complete CRUD operations for workflows
- Category Management: Organize workflows into categories
- Rich Form: Comprehensive workflow form with validation
- Tag Management: Create and assign tags to workflows
The application uses the following main models:
- Workflow: Core workflow data with JSON, metadata, and stats
- Category: Workflow categories (Email, AI, CRM, etc.)
- Tag: Flexible tagging system
- User: Admin users with role-based access
- Junction Tables: Many-to-many relationships
GET /api/workflows- List all workflowsPOST /api/workflows- Create new workflowGET /api/workflows/[id]- Get single workflowPUT /api/workflows/[id]- Update workflowDELETE /api/workflows/[id]- Delete workflowGET /api/search- Search workflowsPOST /api/ai/generate- Generate workflow with AI
-
Push to GitHub:
git push origin main
-
Connect to Vercel:
- Import your repository to Vercel
- Add environment variables
- Deploy
-
Database:
- Use Aiven MySQL, PlanetScale, or Railway
- Update DATABASE_URL in Vercel environment variables
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- 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
This project is licensed under the MIT License - see the LICENSE file for details.
- n8n - Powerful workflow automation
- shadcn/ui - Beautiful UI components
- Google Gemini - AI-powered workflow generation
- Website: flowkit.in
- GitHub: @harshit-exe
Built with ❤️ in India 🇮🇳