DevMate is a web application designed to help developers create and manage their windsurfrules or cursorrules files. Built with Next.js 15 and modern web technologies, it provides an intuitive interface for defining tech stacks, project requirements, and generating properly formatted rules files.
- 🎯 Define tech stack and project requirements
- 📝 Add or remove rule sections dynamically
- 🔄 Generate properly formatted rules files
- 👀 Preview changes in real-time
- 🚀 Modern, responsive UI built with Shadcn UI
- Next.js 15 (App Router)
- TypeScript
- Shadcn UI + Tailwind CSS
- Supabase (Auth & Database)
- Clone the repository:
git clone https://github.com/ChrisLally/DevMate.git
cd DevMate
- Install dependencies:
npm install
- Set up environment variables:
cp .env.example .env.local
# Edit .env.local with your Supabase credentials
- Run the development server:
npm run dev
Open http://localhost:3000 with your browser to see the result.
DevMate includes several development scripts to help streamline your workflow:
Located in scripts/github/
:
-
commit.js
- Create conventional commits./scripts/github/commit.js
-
pull-request.js
- Create pull requests to main branch./scripts/github/pull-request.js
/
├── app/ # App router & API routes
├── components/ # React components
│ ├── server/ # Server Components
│ └── client/ # Client Components
├── actions/ # Server Actions
├── services/ # External integrations
├── types/ # Type definitions
├── utils/ # Utility functions
├── config/ # Environment & constants
├── scripts/ # Development scripts
└── wiki/ # Documentation
For detailed documentation about the project structure and development guidelines, see the wiki.
- Create a new branch for your feature
- Make your changes
- Use
./scripts/github/commit.js
to create conventional commits - Use
./scripts/github/pull-request.js
to create a pull request
- Project Wiki - Development guidelines and documentation
- Next.js Documentation
- Shadcn UI
- Supabase Documentation
MIT License - see LICENSE for details