https://github.com/akashrchandran/invoice-generator
Simple Invoice Generator made uing python flask mini web framework.
https://github.com/akashrchandran/invoice-generator
flask flask-application invoice-generator invoice-pdf python python-flask python3
Last synced: 4 months ago
JSON representation
Simple Invoice Generator made uing python flask mini web framework.
- Host: GitHub
- URL: https://github.com/akashrchandran/invoice-generator
- Owner: akashrchandran
- Created: 2023-02-05T11:30:45.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-26T18:07:42.000Z (over 2 years ago)
- Last Synced: 2025-02-24T15:24:11.997Z (7 months ago)
- Topics: flask, flask-application, invoice-generator, invoice-pdf, python, python-flask, python3
- Language: HTML
- Homepage: https://invoice-generator.akashrchandran.repl.co/
- Size: 128 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Invoice-Generator
Simple Invoice Generator made uing python flask mini web framework.
Live deployed version available at https://invoice-generator.akashrchandran.repl.co/
## Example Usage

__You can check the output file at [here](https://invoice-generator.akashrchandran.repl.co/share?id=NDM3MTUw).__
# Local Installation
> Clone to the local machine using git
```
git clone https://github.com/akashrchandran/Invoice-Generator/
```
> change directory and install depedencies using below commands```
cd Invoice-Generator
pip install -r requirements.txt
```
> Database and Image hosting
### Mongo DB
you can sign up at [Mongo DB](https://www.mongodb.com/) and create a free cluster and set your URI as env variable `MONGO_URI`
### ImgBB
you can sign up at [ImgBB](https://imgbb.com/) and get your API key and then set it as env variable `ImgBB_API_KEY`
> Run local server using
### Linux based OS
```
python3 index.py
```
### Windows
```
py index.py
```> Now open any browser on your computer and enter this link `http://127.0.0.1:8080` and press enter.
You should be able to see the app running.