This is a simple app that helps you split a bill with your friends (presumably via venmo request). This app is meant to be self-hosted and we provide a docker compose stack to make deployment simple.
In keeping with the simplicity, no persistent storage is supported or required.
Proportionality is achieved by calculating the proportion of the pre tax, tip, or fee subtotal attributable to each person, and then distributing the final total (post-tax, tip, or fee) using that calculation.
- This app is designed to deploy via docker-compose.
- The backend is written in
golang
and uses thechi
router - (repo here) - The frontend is a simple SPA written in javascript using the vue.js framework and built using Vite and styled using vanilla CSS in component scoped styles (thanks, vue!)
When you decide what the URL for your instance of this app will be, modify this file with the appropriate base URL.
You'll also need to change the WEB_URL
environment variable in the docker-compose.yml.
Then - simply start the docker compose stack:
docker compose up -d