An expenses app for authors. Built with Next.js.
This repository does not offer any license for the code contained within it. All rights are reserved.
Nobody can copy, distribute, or modify the work without being at risk of take-downs, shake-downs, or litigation.
- Bun
- A PostgreSQL database server running.
Install dependencies:
bun installEnvironment variables:
cp .env.example .env.localand update the values in .env.local.
Setup the database (seed it after logging in, having creating a user):
bunx prisma migrate dev --skip-seedRun the development server:
bun devOpen http://localhost:3000 with your browser and sign in.
Seed the database:
bunx prisma db seed