🥳 Get your estimation party started with confetti 🥳
Realtime estimation with confetti-filled fun. The party tool for your planning process.
Are you tired of mundane planning sessions? It's time to get the party started with confetti.dev! Confetti brings a burst of color and excitement to your fibonacci process. Whether you're working with a large or small team, or just looking for a more engaging way to plan projects, confetti has got you covered. So why just estimate when you can celebrimate?
- 🎨 Colorful - Confetti will rain down when all estimates agree.
- 📈 Realtime - See your team's estimates update in realtime.
- 📝 Collaborative - Share your session with your whole team, small or large.
- 📊 Estimation - Confetti supports currently fibonacci estimates, more coming soon!
- 🔓 Anonymous - No need to create an account. Just enter a username, and you're ready to go.
- 🔒 Secure - Login with your favorite SSO provider. When logged in, your profile image will be shown in the session.
- 📦 Open-source - Confetti is free and open-source.
- ✅ Bootstrapping: create-t3-app.
- ✅ Framework: Nextjs 13 + Typescript.
- ✅ Auth: Next-Auth.js
- ✅ ORM: Prisma.
- ✅ Database: Planetscale.
- ✅ Realtime: Supabase.
- ✅ Styling: TailwindCSS + HeadlessUI.
- ✅ Typescript Schema Validation: Zod.
- ✅ End-to-end typesafe API: tRPC.
🚧 You will need Nodejs +16 (LTS recommended) installed.
- Fork this project:
- Clone the repository:
git clone [email protected]:YOU_USER/confetti.git
- Install dependencies:
npm install
- Create a .env file with the following content:
🚧 The environment variables must match the following schema.
# Next Auth Secrets
NODE_ENV=production
NEXTAUTH_SECRET=
NEXTAUTH_URL=http://localhost:3000
# OAuth secrets:
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
# Next Auth config:
NEXTAUTH_SECRET=
NEXTAUTH_URL=
# Database URLs:
DATABASE_URL=
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
- Ready 🥳, now run:
# Create database migrations
npx prisma db push
# Run the project:
npm run dev