/Expense-Tracking-App

An expense tracker website made with bun, hono, vite, react, neonpg, drizzle and tanstack. It also have tailwind and shadcn for UI, kinde auth as an auth service. Do check it out and explore something new.

Primary LanguageTypeScript

Expense Tracker App

To install dependencies:

bun install

cd frontend
bun install

Add .env file as given in .env.example file

To run:

You need two terminals to run the project. One for the frontend and one for the backend.

Backend:

  bun run dev

Frontend:

  cd frontend
  bun run dev

Docker use :

If you want to run directly on you device you can use my docker image for that.

docker pull 0prashantyadav0/expense-tracker
docker run -p 3000:3000 -p 3000:3000 0prashantyadav0/expense-tracker

Now you can access the app on localhost:3000

This project was created using bun init in bun v1.1.3. Bun is a fast all-in-one JavaScript runtime.