https://github.com/benhyh/flow
code with kiro hackathon
https://github.com/benhyh/flow
kiro productivity-tools workflow-automation
Last synced: about 1 month ago
JSON representation
code with kiro hackathon
- Host: GitHub
- URL: https://github.com/benhyh/flow
- Owner: benhyh
- Created: 2025-08-12T05:24:30.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-08-31T03:16:04.000Z (about 1 month ago)
- Last Synced: 2025-08-31T05:35:05.779Z (about 1 month ago)
- Topics: kiro, productivity-tools, workflow-automation
- Language: TypeScript
- Homepage:
- Size: 1.91 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flow - Visual Workflow Automation
A serverless visual workflow automation tool built with Next.js, Supabase, and React Flow.
## Features
- Visual drag-and-drop workflow editor
- Email-to-task automation (Gmail → Trello/Asana)
- AI-powered content analysis and suggestions
- Real-time workflow monitoring
- Serverless architecture with Vercel and Supabase## Tech Stack
- **Frontend**: Next.js 15, React 19, TypeScript, Tailwind CSS
- **Backend**: Vercel Edge Functions, Supabase
- **Database**: Supabase (PostgreSQL)
- **Caching**: Upstash Redis
- **Authentication**: Supabase Auth with OAuth
- **Workflow Engine**: React Flow
- **AI**: OpenAI API## Getting Started
### Prerequisites
- Node.js 18+ and npm
- Supabase account and project
- Upstash Redis account
- Vercel account (for deployment)### Installation
1. Clone the repository and install dependencies:
```bash
npm install
```2. Copy environment variables:
```bash
cp .env.local.example .env.local
```3. Set up your environment variables in `.env.local`:
- Supabase project URL and keys
- Upstash Redis URL and token
- OAuth credentials for Gmail, Trello, Asana
- OpenAI API key4. Set up the database schema in Supabase:
- Run the SQL in `supabase/schema.sql` in your Supabase SQL editor5. Start the development server:
```bash
npm run dev
```### Available Scripts
- `npm run dev` - Start development server
- `npm run build` - Build for production
- `npm run start` - Start production server
- `npm run lint` - Run ESLint
- `npm run format` - Format code with Prettier
- `npm run test` - Run Jest tests
- `npm run type-check` - Run TypeScript type checking## Project Structure
```
src/
├── app/ # Next.js app directory
│ ├── api/ # API routes
│ └── globals.css # Global styles
├── lib/ # Utility libraries
│ ├── supabase.ts # Supabase client
│ ├── redis.ts # Redis client
│ └── types.ts # TypeScript types
└── providers/ # React providers
└── query-provider.tsx
```## Deployment
This project is configured for deployment on Vercel:
1. Connect your repository to Vercel
2. Set environment variables in Vercel dashboard
3. Deploy automatically on push to main branch## Contributing
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Run tests and linting
5. Submit a pull request## License
MIT License - see LICENSE file for details