-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
565 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,57 @@ | ||
# Invoice generation system for e-commerce | ||
# Invoice Generator | ||
|
||
## Main technologies | ||
## Main Technologies | ||
|
||
- Python | ||
- Fast Api | ||
- Weasyprint | ||
- FastAPI | ||
- WeasyPrint | ||
- Jinja2 | ||
- Firebase Admin | ||
- PyQt5 | ||
- SQLite3 | ||
- Docker | ||
|
||
## Getting Started | ||
|
||
1. Install poetry | ||
1. **Install Poetry** | ||
|
||
You can see how to install poetry in your computer accessing [this link](https://python-poetry.org/docs/main#installation) | ||
You can learn how to install Poetry on your computer by visiting [this link](https://python-poetry.org/docs/main#installation). | ||
|
||
2. Active the virtual environment | ||
2. **Activate the virtual environment** | ||
|
||
```bash | ||
poetry shell | ||
``` | ||
```bash | ||
poetry shell | ||
``` | ||
|
||
3. Create a .env.local file in the root directory following the | ||
env.example file. | ||
3. **Create a `.env.local` file** in the root directory based on the `env.example` file. | ||
|
||
4. Run the the server. | ||
4. **Install PyQt5 using pip through Poetry** | ||
|
||
```bash | ||
uvicorn main:app --reload | ||
``` | ||
```bash | ||
poetry run pip install pyqt5-qt5 | ||
``` | ||
|
||
5. Still Working | ||
5. **Install all dependencies** | ||
|
||
```bash | ||
poetry install | ||
``` | ||
|
||
6. **Populate the database** | ||
|
||
```bash | ||
task seed | ||
``` | ||
|
||
7. **Run the server** | ||
|
||
```bash | ||
task run | ||
``` | ||
|
||
8. **Run the GUI in another tab** | ||
|
||
```bash | ||
task gui | ||
``` | ||
|
||
9. **Still Working 😊** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.