Invoice generator made on Flask.
Hi everyone! This is my first flask project. Its web application which allows you create and download invoice in PDF format.
- Create invoice
- Invoice payment counter
- Preview all invoices
- Delete invoice
- Transfer invoice from html to PDF and download it
- Python 3
- Flask
Download or clone repository from GH. Install libraries from requirements.txt, to do this open your terminal and type:
pip install -r requirements.txt
After that you have to create database, to do this type in python console:
from app import db, app
db.create_all(app=app)
Finally you can start application, to do this you must do following steps:
Linux:
$ export FLASK_DEBUG=1
$ export FLASK_APP=app
$ flask run
Windows:
> set FLASK_DEBUG=1
> set FLASK_APP=app
> flask run
Account name and password for testing application is : admin/admin
If you want create your own user you have to add it manually to database.
Enjoy!
Contact:




