Création d'un fichier de configuration d'exemple pour matomo

This commit is contained in:
Fabrice PENHOËT 2020-09-14 18:46:45 +02:00
parent aa0e342e21
commit 60fdb4d4c2
3 changed files with 6 additions and 7 deletions

1
.gitignore vendored
View File

@ -9,6 +9,7 @@ nodemon.json
!example.env
/config/instance*
!/config/instance-example.js
/config/matomo.js
# FRONT END :

5
config/matomo-example.js Normal file
View File

@ -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" },
};

View File

@ -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" },
};