20 lines
476 B
Markdown
20 lines
476 B
Markdown
|
|
# Démonstration
|
|||
|
|
|
|||
|
|
## Préparer l’environnement
|
|||
|
|
|
|||
|
|
python3 -m venv .venv
|
|||
|
|
source .venv/bin/activate
|
|||
|
|
pip install -r outils/requirements.txt
|
|||
|
|
|
|||
|
|
## Valider le JSON
|
|||
|
|
|
|||
|
|
./outils/valider-json.py demonstration/facture-demo.json
|
|||
|
|
|
|||
|
|
## Générer le QR
|
|||
|
|
|
|||
|
|
./outils/generer-qr.py demonstration/facture-demo.json demonstration/facture-demo-qr.png
|
|||
|
|
|
|||
|
|
## Générer une facture PDF de démonstration
|
|||
|
|
|
|||
|
|
./demonstration/generer-facture-pdf.py demonstration/facture-demo.json demonstration/facture-demo.pdf
|