https://github.com/dacrab/mise
A premium full-stack recipe platform built with Astro 5, React, and Cloudflare. Features social interactions, R2 media storage, and high-performance hybrid rendering.
https://github.com/dacrab/mise
astro better-auth cloudflare-pages drizzle-orm fullstack neon-postgres react recipe-blog tailwindcss view-transitions
Last synced: 3 months ago
JSON representation
A premium full-stack recipe platform built with Astro 5, React, and Cloudflare. Features social interactions, R2 media storage, and high-performance hybrid rendering.
- Host: GitHub
- URL: https://github.com/dacrab/mise
- Owner: dacrab
- Created: 2025-12-18T18:03:55.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-03-02T21:07:13.000Z (3 months ago)
- Last Synced: 2026-03-02T23:28:41.603Z (3 months ago)
- Topics: astro, better-auth, cloudflare-pages, drizzle-orm, fullstack, neon-postgres, react, recipe-blog, tailwindcss, view-transitions
- Language: Astro
- Homepage: https://mise-steel.vercel.app
- Size: 1.11 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mise 🍳
> *From "mise en place" — the chef's practice of preparing everything before cooking.*
A modern recipe sharing platform built with Astro 5, React, and Cloudflare. Share your culinary creations with the world.
**This is a complete rewrite of [RecipeSwap](https://github.com/dacrab/RecipeSwap)**, my original HTML/CSS/JS school project, now rebuilt as a full-stack application.
## Tech Stack
- **Framework:** [Astro 5](https://astro.build/) with React islands
- **Database:** [Neon](https://neon.tech/) (Serverless Postgres) + [Drizzle ORM](https://orm.drizzle.team/)
- **Auth:** [Better Auth](https://better-auth.com/) (Google OAuth + Email/Password)
- **Storage:** [Cloudflare R2](https://www.cloudflare.com/developer-platform/r2/)
- **Deployment:** [Cloudflare Pages](https://pages.cloudflare.com/)
- **Styling:** [Tailwind CSS](https://tailwindcss.com/)
## Features
- Recipe CRUD with image uploads
- Social interactions (likes, bookmarks, comments)
- Chef profiles and dashboards
- Category filtering and search
- Optimistic UI updates
## Quick Start
```bash
# Install dependencies
bun install
# Setup environment
cp .env.example .env
# Then edit .env with your credentials
# Setup database
bun run db:push
# Run dev server
bun dev
```
## Environment Variables
```bash
# Database (Neon Postgres)
DATABASE_URL="postgresql://..."
# Auth (Better Auth)
BETTER_AUTH_SECRET="openssl rand -base64 32"
BETTER_AUTH_URL="http://localhost:4321"
# OAuth (Google) - optional, for social login
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""
# Storage (Cloudflare R2) - for image uploads
CLOUDFLARE_ACCOUNT_ID=""
CLOUDFLARE_ACCESS_KEY_ID=""
CLOUDFLARE_SECRET_ACCESS_KEY=""
R2_BUCKET_NAME=""
PUBLIC_R2_DOMAIN=""
```
## License
MIT