Empower your financial management with Badget - AI-driven insights at your fingertips. Optimize your finances effortlessly.
Introduction · Installation · Tech Stack + Features · Author · Credits
Welcome to Badget, where we're ushering in a new era of financial management. Leveraging cutting-edge AI, Badget redefines how you track, analyze, and optimize your finances, ensuring smarter, more secure financial decisions.
With Badget, gain unparalleled insights into your spending habits and financial patterns, empowering you to budget better and experience more. Trusted by the world's most innovative companies, Badget is here to revolutionize your financial management experience.
Lets goooo - Next.js 14, Turborepo, Drizzle ORM, Planetscale, Clerk, Resend, React Email, Shadcn/ui, and Stripe.
All seamlessly integrated with the Badget to accelerate the development.
Badget is a monorepo managed by Turborepo. The monorepo is split between apps
and packages
directories.
.
├── apps # Its app workspace which contains
│ ├── www # Nextjs app which is deployed in Vercel
│ └── ...
├── tooling # are the shared configuration that are used by the apps and packages (e.g. `@badget/eslint-config`)
├── packages # are the shared packages that are used by the apps (e.g. `@badget/components`)
├── docker-compose.yml
├── LICENSE
└── README.md
Use short lowercase names at least for the top-level files and folders except
LICENSE
,README.md
Clone & create this repo locally with the following command:
git clone https://github.com/projectx-codehagen/Badget
- Install dependencies using pnpm:
pnpm install
- Copy
.env.example
to.env.local
and update the variables.
cp .env.example .env.local
-
Input everything you need for the env.
- Create Clerk Account
- Create Planet Scale Account
- Create Resend Account
- Create Stripe Account
- Create Edge Store Account
-
Start the development server from either yarn or turbo:
# At the root of the mono repo
pnpm run dev
# Or from the app directory
cd apps/www
pnpm dev
This project uses MySQL database on PlanetScale. To setup a DB for your local dev:
- Create a free account and a new Database
- From the dashboard, create a branch and click "Connect" button.
- Hit
Create password
and selectDrizzle
inConnect with
dropdown - Copy the entire list of params to
.env.local
file. Make sure to change the params under the section "Database (MySQL - PlanetScale)" - run
pnpm run db:push
You can also use docker-compose
to have a Mysql database locally, instead of relying on PlanetScale:
- Enter
MYSQL_ROOT_PASSWORD
,MYSQL_DATABASE
,MYSQL_USER
andMYSQL_PASSWORD
values in.env.local
. - run
docker-compose --env-file .env.local up
to start the DB. - run
pnpm run db:push
.
This project uses Resend to handle transactional emails. You need to add create an account and get an api key needed for authentication.
Please be aware that the Resend is designed to send test emails exclusively to the email address registered with the account, or to delivered@resend.dev
, where they are logged on their dashboard.
The default setting for TEST_EMAIL_ADDRESS
is delivered@resend.dev
but you have the option to change it to the email address that is associated with your Resend account.
-
Initial setup - Start removing template
- Update UI to match the product
- XXXXXXXX
- Next.js – React framework for building performant apps with the best developer experience
- Clerk – Handle user authentication with ease with providers like Google, Twitter, GitHub, etc.
- Drizzle ORM – TypeScript ORM that feels like SPA with SSR
- React Email – Versatile email framework for efficient and flexible email development
- Vercel – Easily preview & deploy changes with git
- PlanetScale – A cutting-edge database platform for seamless, scalable data management
- Resend – A powerful email framework for streamlined email development
- Edge Store - Storage, CDN and a super easy to use type-safe library.
- Stripe - Payments
- Tailwind CSS – Utility-first CSS framework for rapid UI development
- Shadcn/ui – Re-usable components built using Radix UI and Tailwind CSS
- Framer Motion – Motion library for React to animate components with ease
- Lucide – Beautifully simple, pixel-perfect icons
next/font
– Optimize custom fonts and remove external network requests for improved performanceImageResponse
– Generate dynamic Open Graph images at the edge
We love our contributors! Here's how you can contribute:
- Open an issue if you believe you've encountered a bug.
- Make a pull request to add new features/make quality-of-life improvements/fix bugs.