git clone git@github.com:janson-git/invoice-generator.git
cd invoice-generator
# build docker image
make build
# run invoice-generator in docker container
make up
# Done! Open http://localhost:44321 in your browser!
# when you created and saved your invoice, down the docker container
make downNOTE: Invoice Generator use NumberFormatter from INTL php extension to format invoice's Total sum as text:
123 will converted to One hundred twenty-three US dollars.
If you don't need it - remove NumberFormatter usage from invoice template.
- Open config.php and set up your project title/titles
- Run Invoice Generator in project folder with
make upcommand - Open in browser:
http://localhost:4321/ - Setup invoice data: date, billed month, number of hours and hourly rate

- Send form and invoice will be displayed
- You can print it to PDF-file from browser (Ctrl+P)
- Stop Invoice Generator with
make downcommand
