A minimalist, web-based expense tracker.
- Copy the environment file and populate it with your secrets:
cp .env.example .env.local- Install the dependencies:
bun install- Connect to a cloud database provider, or set up a local PostgreSQL database:
docker run --name postgres -e POSTGRES_PASSWORD=password -p "5432:5432" postgres- Run a migration to set up the database schema:
bun migrate- Run the local development server:
bun run dev