Skip to content

Commit 62d9e89

Browse files
Merge pull request #39 from dataforgoodfr/37-feat-connexion-back-et-front
37 feat connexion back et front
2 parents 7e49f60 + 8ee0349 commit 62d9e89

File tree

650 files changed

+236264
-218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

650 files changed

+236264
-218
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Demande de fonctionnalité
3+
about: Un nouveau visuel ou une fonctionnalité à ajouter ?
4+
title: "[\U0001F6A7 FEAT]"
5+
labels: fonctionnalité
6+
assignees: ''
7+
8+
---
9+
10+
**Demande de fonctionnalité**
11+
12+
**Description de la fonctionnalité**
13+
Une description claire et concise de la fonctionnalité demandée.
14+
15+
**Raison de la demande**
16+
Expliquez pourquoi cette fonctionnalité est nécessaire ou bénéfique.
17+
18+
**Détails de la demande**
19+
- Où cette fonctionnalité devrait-elle être implémentée dans l'application (par exemple, quel onglet) ?
20+
- Comment cette fonctionnalité devrait-elle fonctionner ?
21+
- Quels sont les résultats attendus de cette fonctionnalité ?
22+
23+
**Onglet associé**
24+
Dans quel onglet de l'application cette fonctionnalité serait-elle le plus pertinente ?
25+
26+
**Captures d'écran**
27+
Si vous avez des captures d'écran ou des exemples visuels pour illustrer la demande, n'hésitez pas à les ajouter.
28+
29+
**Contexte supplémentaire**
30+
Ajoutez tout autre contexte ou information pertinente concernant la demande de fonctionnalité.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Signalement de bug
3+
about: Un bug à nous faire remonter ?
4+
title: "[\U0001F99F BUG]"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Décrire le bug**
11+
Une description claire et concise du bug.
12+
13+
**Pour reproduire**
14+
Étapes pour reproduire le comportement :
15+
1. Aller à '...'
16+
2. Cliquer sur '....'
17+
3. Faire défiler jusqu'à '....'
18+
4. Voir l'erreur
19+
20+
**Comportement attendu**
21+
Une description claire et concise de ce à quoi vous vous attendiez.
22+
23+
**Captures d'écran**
24+
Si applicable, ajoutez des captures d'écran pour expliquer votre problème.
25+
26+
**Ordinateur de bureau (veuillez compléter les informations suivantes) :**
27+
- OS : [par exemple iOS]
28+
- Navigateur : [par exemple chrome, safari]
29+
- Version : [par exemple 22]
30+
31+
**Smartphone (veuillez compléter les informations suivantes) :**
32+
- Appareil : [par exemple iPhone6]
33+
- OS : [par exemple iOS8.1]
34+
- Navigateur : [par exemple navigateur par défaut, safari]
35+
- Version : [par exemple 22]
36+
37+
**Contexte supplémentaire**
38+
Ajoutez tout autre contexte concernant le problème ici.

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ cython_debug/
165165
# Precommit hooks: ruff cache
166166
.ruff_cache
167167

168-
etl/zds/.file_versions/*
168+
zds/backend/mage/zds/.file_versions/*
169169

170170
# Dossier sauvegarde Thibaut
171171
TG_sauv
@@ -174,4 +174,5 @@ TG_sauv
174174
dashboards/app/.credentials.yml
175175

176176
# For obvious reasons
177-
/etl/.mysql_root_password
177+
**/.mysql_root_password
178+
**/.mysql_merterre_password

.pre-commit-config.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
exclude: 'etl/zds/.*'
1+
exclude: 'zds/backend/.*'
22

33
repos:
44
- repo: https://github.com/charliermarsh/ruff-pre-commit
@@ -27,3 +27,4 @@ repos:
2727
hooks:
2828
- id: python-safety-dependencies-check
2929
args: ["--ignore=73456,71608,71956,71957,72236,71064,70612,71591,67895,72083"]
30+
files: (?x)^(dashboards/app/requirements.txt|etl/requirements.txt)

Exploration_visualisation/cleaning_events.py

+21-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PATH = "./data/"
44

5-
# import du fichier d'exportations des events
5+
# import du fichier d'exportations des events
66
df_events = pd.read_excel(PATH + "export_events_14032024.xlsx")
77

88
# Supprime les événements annulés
@@ -14,21 +14,32 @@
1414
# Remplace les valeurs NaN par 0 dans le NIVEAU DE CARAC
1515
df_events.NIVEAU_CARAC.fillna(0, inplace=True)
1616
# change le type de NIVEAU_CARAC en int
17-
df_events.NIVEAU_CARAC = df_events.NIVEAU_CARAC.astype('int64')
17+
df_events.NIVEAU_CARAC = df_events.NIVEAU_CARAC.astype("int64")
1818

19-
# COORD GPS :
20-
# Supprime les crochets
21-
# split les valeurs par la virgule pour obtenir les coordonnées X et Y
19+
# COORD GPS :
20+
# Supprime les crochets
21+
# split les valeurs par la virgule pour obtenir les coordonnées X et Y
2222
# convertit en float
23-
df_events[['COORD_GPS_X', 'COORD_GPS_Y']] = df_events.COORD_GPS_RDV.str.strip('[]').str.split(',', expand=True).astype(float)
23+
df_events[["COORD_GPS_X", "COORD_GPS_Y"]] = (
24+
df_events.COORD_GPS_RDV.str.strip("[]").str.split(",", expand=True).astype(float)
25+
)
2426

2527
# Majuscule sur TYPE_EVENEMENT
2628
df_events.TYPE_EVENEMENT = df_events.TYPE_EVENEMENT.str.capitalize()
2729

2830
# Supprime les colonnes de contact des structures (anonymisation)
2931
# Supprime la colonne COORD_GPS_RDV (inutile)
3032
# Supprime la colonne ANNULE (déjà filtrée)
31-
df_events = df_events.drop(['REFERENT_STRUCTURE', 'TELEPHONE_STRUCTURE', 'COURRIEL_STRUCTURE', 'COORD_GPS_RDV', 'ANNULE'], axis=1)
32-
33-
34-
df_events.to_csv(PATH + 'export_events_cleaned.csv', index=False, encoding='utf-8-sig')
33+
df_events = df_events.drop(
34+
[
35+
"REFERENT_STRUCTURE",
36+
"TELEPHONE_STRUCTURE",
37+
"COURRIEL_STRUCTURE",
38+
"COORD_GPS_RDV",
39+
"ANNULE",
40+
],
41+
axis=1,
42+
)
43+
44+
45+
df_events.to_csv(PATH + "export_events_cleaned.csv", index=False, encoding="utf-8-sig")
Binary file not shown.

README.md

+27-53
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,27 @@
1-
Template DataForGood
2-
================
3-
4-
<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->
5-
6-
This file will become your README and also the index of your
7-
documentation.
8-
9-
# Contributing
10-
11-
12-
## Use a venv
13-
14-
python3 -m venv name-of-your-venv
15-
16-
source name-of-your-venv/bin/activate
17-
18-
19-
## Utiliser Poetry
20-
21-
[Installer Poetry](https://python-poetry.org/docs/):
22-
23-
python3 -m pip install "poetry==1.4.0"
24-
25-
Installer les dépendances:
26-
27-
poetry install
28-
29-
Ajouter une dépendance:
30-
31-
poetry add pandas
32-
33-
Mettre à jour les dépendances:
34-
35-
poetry update
36-
37-
## Utiliser Jupyter Notebook
38-
39-
jupyter notebook
40-
41-
and check your browser !
42-
43-
## Lancer les precommit-hook localement
44-
45-
[Installer les precommit](https://pre-commit.com/)
46-
47-
48-
pre-commit run --all-files
49-
50-
51-
## Utiliser Tox pour tester votre code
52-
53-
tox -vv
1+
![](./media/zds_banner.png)
2+
3+
# Zéro Déchet Sauvage
4+
## À propos
5+
[Zéro Déchet Sauvage](http://zds-app.duckdns.org/) (ZDS) est une application de visualisation de données de déchets diffus et collectés au cours d'évènements de collectes. Il s'agit d'une plateforme appartenant à l'association [MerTerre](https://mer-terre.org/) et développée par des bénévoles de l'association Data For Good.
6+
7+
## Démo
8+
Une démo de l'applicaiton a été réalisée lors du Demo Day organisée à la fin de la saison 12 par Data For Good.
9+
10+
<a href="[URL](https://www.youtube.com/live/7Zvy2PS7Vjg?si=Z3Gduxff0EunXsF7&t=6210)">
11+
<img src="https://i.ytimg.com/vi/7Zvy2PS7Vjg/maxresdefault.jpg?sqp=-oaymwEmCIAKENAF8quKqQMa8AEB-AH-CYAC0AWKAgwIABABGFUgTyhlMA8=&rs=AOn4CLC3vkFGSd9jcNDb0HxMvbdN8kxQyA" alt="video youtube du demo day" width="50%">
12+
</a>
13+
14+
## Remerciement
15+
Merci à l'équipe de développement :
16+
* [Floriane](https://github.com/florianeduccini)
17+
* [Hadrien](https://github.com/DridrM)
18+
* [Mehdi](https://github.com/Mendi33)
19+
* [Vincent](https://github.com/Vincentdata)
20+
* [Thibault](https://github.com/tgazagnes)
21+
* [Linh](https://github.com/linh-dinh-1012)
22+
* [Joaquim](https://github.com/JoaquimDiaz)
23+
* [Valérie](https://github.com/ValerieNevo)
24+
* [Kyllian](https://github.com/KyllianBeguin)
25+
26+
## Licence
27+
Ce projet est sous licence MIT. Plus d'information sur le fichier [LICENCE](https://github.com/dataforgoodfr/12_zero_dechet_sauvage/blob/staging/LICENSE).

media/zds_banner.png

99.6 KB
Loading

python_template/__init__.py

Whitespace-only changes.

zds/backend/db/Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM mysql:9.1.0
2+
3+
ENV MYSQL_DATABASE zero_dechet_sauvage
4+
5+
COPY ./scripts/setup_db.sql /docker-entrypoint-initdb.d/
6+
7+
COPY ./.mysql_root_password /.mysql_root_password
8+
COPY ./.mysql_merterre_password /.mysql_merterre_password
9+
COPY ./scripts/create_merterre.sql create_merterre.sql
10+
COPY ./create_merterre.sh /docker-entrypoint-initdb.d/

zds/backend/db/create_merterre.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
#reading the value of weekday.txt file into the var variable
4+
rpass=$(cat .mysql_root_password)
5+
mpass=$(cat .mysql_merterre_password)
6+
7+
add_merterre_raw=$(cat create_merterre.sql)
8+
add_merterre="${add_merterre_raw/BY /BY \'"$mpass"\'}"
9+
10+
mysql -h localhost --user=root --password=$rpass -se "$add_merterre"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CREATE USER 'merterre'@'%' IDENTIFIED BY ;
2+
GRANT INSERT, SELECT, UPDATE ON zero_dechet_sauvage.* TO 'merterre'@'%';

0 commit comments

Comments
 (0)