-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ Vous pouvez maintenant lancer la commande `yarn install` pour installer les pack | |
## URLs | ||
|
||
| Environnement | URL | | ||
| -------------------------------------------------- | --------------------------------------------------------- | | ||
|----------------------------------------------------|-----------------------------------------------------------| | ||
| Production (access granted only for authorized IP) | <https://cdtn-admin.fabrique.social.gouv.fr/> | | ||
| Preproduction | <https://cdtn-admin-preprod.dev.fabrique.social.gouv.fr/> | | ||
|
||
|
@@ -81,7 +81,7 @@ This step starts the frontend project (based on `next.js`). User and admin accou | |
Hasura step. | ||
| Type | Username | Password | | ||
| ----- | -------------------------------------- | -------- | | ||
|-------|----------------------------------------|----------| | ||
| Admin | [email protected] | admin | | ||
| User | [email protected] | user | | ||
|
@@ -201,7 +201,7 @@ La table documents dans le schéma public contient les documents qui se transfor | |
Voici un tableau descriptif des champs de cette table : | ||
|
||
| Nom du champ | type | Description | | ||
| ---------------- | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
|------------------|--------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ||
| cdtn_id | text | Identifiant unique générer par la méthode `generateCdtnId` dans le package `shared/id-generator` | | ||
| initial_id | text | L'identifiant externe du document (pour les contenus legifrance c'est le `KALIARTI` renvoyé par l'API, pour la fiche service publique c'est l'identifiant `FXXX` fourni, pour les contenus internes c'est un UUID généré...) | | ||
| title | text | Le titre de la page qui sera affiché dans le H1. Attention, il y a également le `meta_title` qui peut être présent dans le champ `document` | | ||
|
@@ -272,7 +272,14 @@ Avec comme paramètres : | |
|
||
```json | ||
{ | ||
"sources": ["page_fiche_ministere_travail", "information", "fiches_service_public", "modeles_de_courriers", "contributions", "conventions_collectives"] | ||
"sources": [ | ||
"page_fiche_ministere_travail", | ||
"information", | ||
"fiches_service_public", | ||
"modeles_de_courriers", | ||
"contributions", | ||
"conventions_collectives" | ||
] | ||
} | ||
``` | ||
|
||
|