GAIA/
├── app/
│ ├── __init__.py
│ ├── db.py
│ ├── models.py
│ ├── routes/
│ │ ├── main.py
│ │ └── auth.py
│ ├── static/
│ │ ├── css
│ │ │ ├── index.css
│ │ │ └── login.css
│ │ └──Logo.png
│ └── templates/
│ ├── index.html
│ ├── login.html
│ └── register.html
│
├── docs/
│ ├── PERSONAS/
│ ├── USERSTORIES.md
│ ├── UML.png
│ └── fiche_projet_GAIA.pdf
├── tests/
│ └── test_db.py
├── run.py
├── requirements.txt
└── .env/
git clone https://github.com/LSINC1509-Projet4/GAIA.git
cd GAIA
source .env/bin/activate
pip install -r requirements.txt
Si pas de base de donnée active
python -m test.test_db
lancer le site
python run.py