diff --git a/.gitignore b/.gitignore index f01a9d2..767f6dc 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ nodemon.json !example.env /config/instance* !/config/instance-example.js +/config/matomo.js # FRONT END : diff --git a/config/matomo-example.js b/config/matomo-example.js new file mode 100644 index 0000000..9e24b12 --- /dev/null +++ b/config/matomo-example.js @@ -0,0 +1,5 @@ +// Saisir l'url et l'id du site dans matomo et enregistrer le fichier sous le nom matomo.js +module.exports = +{ + matomo: { url: "https://example.tld/", siteId: "1" }, +}; \ No newline at end of file diff --git a/config/matomo.js b/config/matomo.js deleted file mode 100644 index f191859..0000000 --- a/config/matomo.js +++ /dev/null @@ -1,7 +0,0 @@ -// Si non utilisé, supprimer l'appel des JS front-end puis recompiler. -// Revoir comment réorganiser cela sous-forme de module indépendant. -module.exports = -{ - // Stats Matomo : - matomo: { url: "https://stats.le-fab-lab.com/", siteId: "5" }, -}; \ No newline at end of file