Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 870 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 870 Bytes

haushalt

haushalt is a little PHP web application used for tracking household expenses, for example among student roommates (which is what I wrote it for).

To try it in a docker container (a containerized environment):

git clone [email protected]:dietmar/haushalt.git
cd haushalt

docker run \
 -dit \
 --name haushalt \
 -p 18000:80 \
 -v "$(pwd)"/haushalt:/var/www/html/haushalt \
 php:7.0-apache \
 /var/www/html/haushalt/program/setup.bash

Then open http://localhost:18000/haushalt/ in your browser, and enter please let me in (including the blanks) in the field on the first page.

For real use you should modify haushalt/program/Config.php.

It looks like this (the interface is in German, change the templates to your needs): Screenshot