#30 - Avoir des statistiques avec Matomo #33
5 changed files with 23 additions and 1 deletions
|
@ -10,7 +10,7 @@ Le code source est publié sous licence libre [GNU GPL-3.0-or-later](LICENSE) et
|
||||||
|
|
||||||
Vous pouvez librement utiliser le service en vous inscrivant sur [https://www.musictopus.fr/](https://www.musictopus.fr/).
|
Vous pouvez librement utiliser le service en vous inscrivant sur [https://www.musictopus.fr/](https://www.musictopus.fr/).
|
||||||
|
|
||||||
Une fois inscrit vous pourrez saisir vos CDs et Vinyles sur votre espace personnel le tout gratuitement, sans tracker et sans utilisation de vos données personnelles !
|
Une fois inscrit vous pourrez saisir vos CDs et Vinyles sur votre espace personnel le tout gratuitement, sans tracker (en dehors de statistiques web via [Matomo](https://fr.matomo.org/)) et sans utilisation de vos données personnelles !
|
||||||
|
|
||||||
## Auto hébergement
|
## Auto hébergement
|
||||||
|
|
||||||
|
@ -195,6 +195,7 @@ MONGODB_URI # Url du serveur mongo (par défaut mongodb://musictopus-db/musictop
|
||||||
SECRET # Hash utilisé pour pour sauvegardé les dessions (par défaut waemaeMe5ahc6ce1chaeKohKa6Io8Eik)
|
SECRET # Hash utilisé pour pour sauvegardé les dessions (par défaut waemaeMe5ahc6ce1chaeKohKa6Io8Eik)
|
||||||
DISCOGS_TOKEN # Token Discogs (vous devez créer un compte sur discogs afin d'en obtenir un gratuitement)
|
DISCOGS_TOKEN # Token Discogs (vous devez créer un compte sur discogs afin d'en obtenir un gratuitement)
|
||||||
FORMSPREE_ID # Id du formulaire formspree pour la page "nous-contacter"
|
FORMSPREE_ID # Id du formulaire formspree pour la page "nous-contacter"
|
||||||
|
MATOMO_URL # Url vers l'instance matomo (exemple: https://analytics.darkou.fr/)
|
||||||
```
|
```
|
||||||
|
|
||||||
## Contributeurs
|
## Contributeurs
|
||||||
|
|
|
@ -25,6 +25,7 @@ services:
|
||||||
SECRET: ${SECRET}
|
SECRET: ${SECRET}
|
||||||
DISCOGS_TOKEN: ${DISCOGS_TOKEN}
|
DISCOGS_TOKEN: ${DISCOGS_TOKEN}
|
||||||
FORMSPREE_ID: ${FORMSPREE_ID}
|
FORMSPREE_ID: ${FORMSPREE_ID}
|
||||||
|
MATOMO_URL: ${MATOMO_URL}
|
||||||
networks:
|
networks:
|
||||||
- musictopus
|
- musictopus
|
||||||
musictopus-db:
|
musictopus-db:
|
||||||
|
|
|
@ -25,6 +25,7 @@ services:
|
||||||
SECRET: ${SECRET}
|
SECRET: ${SECRET}
|
||||||
DISCOGS_TOKEN: ${DISCOGS_TOKEN}
|
DISCOGS_TOKEN: ${DISCOGS_TOKEN}
|
||||||
FORMSPREE_ID: ${FORMSPREE_ID}
|
FORMSPREE_ID: ${FORMSPREE_ID}
|
||||||
|
MATOMO_URL: ${MATOMO_URL}
|
||||||
networks:
|
networks:
|
||||||
- musictopus
|
- musictopus
|
||||||
musictopus-db:
|
musictopus-db:
|
||||||
|
|
|
@ -5,4 +5,5 @@ module.exports = {
|
||||||
secret: process.env.SECRET || "waemaeMe5ahc6ce1chaeKohKa6Io8Eik",
|
secret: process.env.SECRET || "waemaeMe5ahc6ce1chaeKohKa6Io8Eik",
|
||||||
discogsToken: process.env.DISCOGS_TOKEN,
|
discogsToken: process.env.DISCOGS_TOKEN,
|
||||||
formspreeId: process.env.FORMSPREE_ID,
|
formspreeId: process.env.FORMSPREE_ID,
|
||||||
|
matomoUrl: process.env.MATOMO_URL || "",
|
||||||
};
|
};
|
||||||
|
|
|
@ -19,6 +19,24 @@
|
||||||
<script src="/libs/axios/axios.min.js"></script>
|
<script src="/libs/axios/axios.min.js"></script>
|
||||||
<script src="/libs/vue/vue.global.prod.js"></script>
|
<script src="/libs/vue/vue.global.prod.js"></script>
|
||||||
<script src="/js/main.js"></script>
|
<script src="/js/main.js"></script>
|
||||||
|
|
||||||
|
<% if ( config.matomoUrl ) { %>
|
||||||
|
<!-- Matomo -->
|
||||||
|
<script>
|
||||||
|
var _paq = window._paq = window._paq || [];
|
||||||
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||||
|
_paq.push(['trackPageView']);
|
||||||
|
_paq.push(['enableLinkTracking']);
|
||||||
|
(function() {
|
||||||
|
var u="<%= config.matomoUrl %>";
|
||||||
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||||
|
_paq.push(['setSiteId', '3']);
|
||||||
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||||
|
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<!-- End Matomo Code -->
|
||||||
|
<% } %>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<nav class="navbar" aria-label="Navigation principale">
|
<nav class="navbar" aria-label="Navigation principale">
|
||||||
|
|
Loading…
Reference in a new issue