diff --git a/README.md b/README.md index fbbbd35..37322ca 100644 --- a/README.md +++ b/README.md @@ -1 +1,32 @@ -Dépôt pour la SAE de seconde année BUT Aix en Provence +![build status](./images/logo.png) + +___ +

A Simple deduction game based on facial reactions

+ +![build status](https://github.com/ThomasRubini/SAE-A2-TruthInquiry/actions/workflows/tests.yml/badge.svg) + +## Screenshots +![title](./images/title.png) +![interrogation](./images/Interogation.png) +![debrief](./images/debrief.png) + +___ +## How to run + +In ordre to run the server you will need ```python3``` and ```python3-pip```. +Then to install the depedencies run ```pip install -r requirement.txt```. + +If you want to contribute you may install the dev dependecies as well : ```pip install -r dev-requirement.txt``` + +You will need to create the .env file from the .env.dist and fill the parameters. Do take note that this website was conceived to run on a mariadb sql database, however this can be easly changed in the data_access.py file. In order to fill the remote database with the data availible in this repo you will need to run the remote.py script : ```python3 truthinquiry/logic/data_persistance/remote.py ``` + +To launch the web server just run the command ```flask run``` +To run the test run the command ```python3 -m pytest --verbose``` + +## Contributors + +[BIGA Paul](https://github.com/SujetDelta) +[CAZALS Matthias](https://github.com/mathiascazals) +[RUBINI Thomas](https://github.com/ThomasRubini) +[SIMAILA Djalim](https://github.com/DjalimSimaila) +[V Audric](https://github.com/AudricV) \ No newline at end of file diff --git a/images/Interogation.png b/images/Interogation.png new file mode 100644 index 0000000..395c049 Binary files /dev/null and b/images/Interogation.png differ diff --git a/images/debrief.png b/images/debrief.png new file mode 100644 index 0000000..d7a96e1 Binary files /dev/null and b/images/debrief.png differ diff --git a/images/logo.png b/images/logo.png new file mode 100644 index 0000000..a17afd6 Binary files /dev/null and b/images/logo.png differ diff --git a/images/title.png b/images/title.png new file mode 100644 index 0000000..bb73735 Binary files /dev/null and b/images/title.png differ