← Tüm kılavuzlar
Plausible Analytics
A lightweight, open-source, privacy-focused web analytics tool with a simple dashboard, positioned as a GDPR-friendly alternative to Google Analytics.
Bu kılavuz, yukarıda bağlantısı verilen Plausible Analytics kendi resmi belgelerinden derlenmiştir — dağıtım ve proje sürümleri zamanla değiştiğinden, bu komutları bir üretim sunucusunda çalıştırmadan önce tam paket/sürüm adlarını her zaman orada kontrol edin.
1Clone the Community Edition repo
git clone https://github.com/plausible/community-edition.git plausible-cecd plausible-ceCheck the repo's Releases page for the latest tag and consider cloning that specific tag instead of the default branch.
2Create the .env configuration
touch .envecho "BASE_URL=https://plausible.example.com" >> .envecho "SECRET_KEY_BASE=$(openssl rand -base64 48)" >> .env3Start the stack
Plausible runs as three containers: the web app (Elixir), PostgreSQL for accounts, and ClickHouse for analytics events. ClickHouse needs at least 2 GB RAM at idle.
docker compose up -d4Create the first user
Visit your BASE_URL and register the first account through the web UI.