"github": "https://github.com/umami-software/umami", "discord": "https://umami.is/discord", "twitter": "https://twitter.com/umami_software", "linkedin": "https://www.linkedin.com/company/umami-software/" } } } 2 changes: 1 addition & 1 deletion 2 package.json Original file li...
git clone https://github.com/umami-software/umami.git cd umami yarn install Configure umami Create an .env file with the following DATABASE_URL=connection-url The connection url is in the following format: postgresql://username:mypassword@localhost:5432/mydb mysql://username:mypassword@localh...
In this tutorial you will install Umami and a PostgreSQL database using Docker Compose, then install Nginx to act as a reverse proxy for Umami. Finally, you will enable secure HTTPS connections by using Certbot to download and configure SSL certificates from the Let’s Encrypt Certifica...
You have now successfully deployed your instance of Umami Analytics. You can now track page views, session durations, and other metrics from all your websites. You can refer to Umami’s documentation to learnhow to track events. If you want to have Umami available...
git clone https://github.com/umami-software/umami.gitcdumami yarn install Configure Umami Create an.envfile with the following: DATABASE_URL=connection-url The connection URL format: postgresql://username:mypassword@localhost:5432/mydb mysql://username:mypassword@localhost:3306/mydb ...
umami-software/node umami-software/nodePublic NotificationsYou must be signed in to change notification settings Fork3 Star10 master 1Branch 0Tags Code Folders and files Name Last commit message Last commit date Latest commit mikecao Merge pull request#2from franciscop/patch-1...
Fork of umami-software/umami. Contribute to maphubs/umami development by creating an account on GitHub.
Umami is a simple, fast, privacy-focused alternative to Google Analytics. - Commits · umami-software/umami
1. Running inside the Umami folder cd umami yarn add @umami/migrate-v1-v2 npx @umami/migrate-v1-v2 2. Running standalone Install git clone https://github.com/umami-software/migrate-v1-v2.git cd migrate-v1-v2 yarn install yarn build Configure Create an .env file with the following ...
import umami from '@umami/node'; umami.init({ websiteId: '50429a93-8479-4073-be80-d5d29c09c2ec', // Your website id hostUrl: 'https://umami.mywebsite.com' // URL to your Umami instance }); umami.track({ url: '/home' }); The properties you can send using the .track funct...