https://github.com/omermakesstuff/kirimase-tutorial
A minimal Linktree clone built with Next.js and Kirimase
https://github.com/omermakesstuff/kirimase-tutorial
drizzle drizzle-orm kirimase lucia-auth nextjs shadcn-ui stripe
Last synced: 3 months ago
JSON representation
A minimal Linktree clone built with Next.js and Kirimase
- Host: GitHub
- URL: https://github.com/omermakesstuff/kirimase-tutorial
- Owner: OmerMakesStuff
- Created: 2024-03-04T20:56:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-04T20:56:18.000Z (over 1 year ago)
- Last Synced: 2025-06-26T08:44:07.176Z (3 months ago)
- Topics: drizzle, drizzle-orm, kirimase, lucia-auth, nextjs, shadcn-ui, stripe
- Language: TypeScript
- Homepage:
- Size: 168 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kirimase tutorial thing
This is a minimal Linktree clone built with [Next.js](https://nextjs.org/) and [Kirimase](https://kirimase.dev), created by following [this tutorial](https://kirimase.dev/the-tutorial).
This project uses PNPM as its package manager.
## Running the project
First, create an `.env` file with the following content:
```
DATABASE_URL=sqlite.db
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET=
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
NEXT_PUBLIC_STRIPE_PRO_PRICE_ID=
NEXT_PUBLIC_STRIPE_MAX_PRICE_ID=
NEXT_PUBLIC_STRIPE_ULTRA_PRICE_ID=
```Fill in the missing Stripe environment variables according to [this part of the tutorial](https://kirimase.dev/the-tutorial#follow-next-steps).
Now run the dev server, at [http://localhost:3000](http://localhost:3000):
```bash
pnpm dev
```