This is a simple no non-sense bill splitter web app that I created because I didn't like the other bill splitter apps currently available.
- Clone this repo to
~/splitteroni
- Install dependencies:
pipenv install
- Create a virtual environment:
virtualenv venv -p python3.8
- Activate the environment:
. venv/bin/activate
- Update config/settings.py by adding your own django secret key
- Start Django internal test server:
python manage.py runserver
- Make the first migration:
python manage.py migrate
- Create the superuser:
python manage.py createsuperuser
python3.8
postgresql
- Prior to deployment you'll need to enter your own django secret key into docker-compose-public.yml
environment:
"DJANGO_SECRET_KEY=enter_key_here"