Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thomascode92/spellbook
Organize and explore an extensive library of magical spells with ease. Enhance your mystical prowess and streamline your wizardry journey with Spellbook today! 🧙♂️🔮
https://github.com/thomascode92/spellbook
chadcn full-stack nextjs prisma tailwindcss trpc
Last synced: 29 days ago
JSON representation
Organize and explore an extensive library of magical spells with ease. Enhance your mystical prowess and streamline your wizardry journey with Spellbook today! 🧙♂️🔮
- Host: GitHub
- URL: https://github.com/thomascode92/spellbook
- Owner: ThomasCode92
- Created: 2024-03-28T11:59:46.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-22T18:23:55.000Z (9 months ago)
- Last Synced: 2024-10-12T00:50:34.970Z (3 months ago)
- Topics: chadcn, full-stack, nextjs, prisma, tailwindcss, trpc
- Language: TypeScript
- Homepage:
- Size: 153 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spellbook
Welcome to _Spellbook_ - your comprehensive spellbook and spell management tool! 📚✨
Organize and explore an extensive library of magical spells with ease. Enhance your mystical prowess and streamline your wizardry journey with _Spellbook_ today! 🧙♂️🔮This project draws inspiration from the "_How to Build a Full-stack CRUD App_" tutorial on YouTube, presented by [Orc Dev](https://www.youtube.com/@orcdev). For a comprehensive walkthrough, check out the full video tutorial [here](https://www.youtube.com/watch?v=zdUS_Dwje8Q).
## Getting Started
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
To begin exploring and contributing to this project, follow these steps:```bash
git clone https://github.com/ThomasCode92/spellbook
cd spellbook # navigate into project
npm install # install dependencies
# set up Prisma, as described below
npm run dev # start development server
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.### Local Development with Prima
This project harnesses the power of [Prisma](https://www.prisma.io/) paired with a SQLite database for seamless local development. To set up your local database, just drop a `dev.db` file into the `prisma` directory. Then, execute the following commands to apply migrations and to create a Client:
```bash
touch prisma/dev.db # create SQLite DB file, if not exists
npx prisma migrate dev # apply migrations
npx prisma generate # generate a prisma client
```