A collaborative writing platform built with Next.js, Supabase, and Clerk.
- Node.js (v18 or higher)
- pnpm or npm
- Supabase CLI
- Git
- Clone the repository
git clone https://github.com/bmorrisondev/quillmate.git
cd quillmate
- Install dependencies
# Using pnpm (recommended)
pnpm install
# Using npm
npm install
- Set up Supabase
- Create a new account at Supabase
- Create a new project
- Go to Project Settings > API
- Copy the
Project URL
andanon
key - Create a
.env.local
file in the root directory and add:
NEXT_PUBLIC_SUPABASE_URL=your_project_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_anon_key
- Set up Clerk
- Create a new account at Clerk
- Create a new application
- Copy the keys from Step 2 of the quickstart
- Add to your
.env.local
:
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=your_publishable_key
CLERK_SECRET_KEY=your_secret_key
- Apply database migrations
# Using pnpm
pnpm supabase db push
# Using npx
npx supabase db push
- Start the development server
# Using pnpm
pnpm dev
# Using npm
npm run dev
The application should now be running at http://localhost:3000
- Collaborative writing environment
- Real-time updates
- Organization support through Clerk
- Secure authentication and authorization
- Responsive design
- Next.js 15 (App Router)
- Supabase (Database & RLS)
- Clerk (Authentication)
- TypeScript
- Tailwind CSS