Skip to content

Commit

Permalink
typos, formulations
Browse files Browse the repository at this point in the history
  • Loading branch information
IdrissaD committed Oct 12, 2021
1 parent 9ea8539 commit 163f730
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion geotrek/v_treks_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ WITH
WHERE t.published IS TRUE
),
sources AS (
SELECT string_agg(c_1."name", ',')::text AS noms_source, t_1.trek_id -- création d'une chaîne de caractère de toutes les sources de l'itinéraire
SELECT string_agg(c_1."name", ',')::text AS noms_source, t_1.trek_id -- création d'une chaîne de caractères de toutes les sources de l'itinéraire
FROM common_recordsource c_1, trekking_trek_source t_1
WHERE t_1.recordsource_id = c_1.id
GROUP BY t_1.trek_id
Expand Down
7 changes: 5 additions & 2 deletions local_validator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,20 @@ Un script Node.js utilisant [ajv](https://ajv.js.org/) permet de valider le fich

### Commandes

Pour une installation automatique en utilisant le fichier `package-lock.json`, exécuter la commande `npm install` dans le dossier `local_validator`.

Pour une installation manuelle :
```
npm install ajv
npm install ajv-formats
```

Exécution du script :
```
cd local_validator
node validate_data_with_ajv.js
```

Output:
Sortie :

`Fichier de données valide !`

Expand Down

0 comments on commit 163f730

Please sign in to comment.