When on a trip or vacation, or even just going to a restaurant, it's very likely that one person will front the bill for the group.
It is an impossible task to keep all expenses accounted for. Hence, our team decided to make a web application which keeps track of all payments. In the end, the aim is to calculate and display what each member owes based on how much they have spent during the trip and on what things.
The current functionality only supports splitting a bill where a single person makes the payment on behalf of the group (for example, at a dinner reservation). All other members present have to then owe the person who paid the entire bill.
Future work includes extending the web app to allow budgeting and scenarios where multiple pay on an entire trip. It would also be nice to split the bill in different ways, such as by percentage or randomly instead of just evenly.
- npm for running the web app
- CherryPy for running the server
- Python 3
- Navigate to
A1/split-webapp/split
in your terminal - Run
npm i
to install all the dependancies - Run
npm start
The web app is built in React and uses Material-UI.
- Navigate to
A1/server/src
- Make sure CherryPy is installed. You can install it with
pip install CherryPy
orpip3 install CherryPy
- Run
main.py
with Python3 e.g../main.py
orpython3 main.py
The back-end is built in Python and uses CherryPy and SQLite.
To learn how to contribute, please read CONTRIBUTING.md.
See List of Contributors to see who worked on this project. Remember to add yourself to this file if you also worked on it 😊
This project is licensed under GNU General Public License v3.0. See LICENSE.md for more details
- Special thanks to Kelly Blincoe