A simple, lightweight, and open source Google Analytics alternative based on Laravel.
Larabee track your website with cookie-free, compliant with GDPR, and privacy-focused. But you can also identify users with a email, for example:
<button
data-larabee-event="Choose Plan"
data-larabee-event-plan="Pro"
data-larabee-event-user-id="1"
data-larabee-event-user-email="[email protected]"
>
Choose Pro Plan
</button>
data-larabee-event it's the event name, required. The other data-larabee-event-* are custom properties that you can use to filter and segment your data.
Example of a custom event in the dashboard:
We have a cloud version where you can sign up and test at app.larabee.io
The docker-compose contains all what you need to run Larabee on your localhost.
- PHP 8.2
- PostgreSQL 15
- Mailpit - http://localhost:8025/
- Redis
git clone
[email protected]:larabeeHQ/larabee.git
Install composer packages
docker run --rm \
-u "$(id -u):$(id -g)" \
-v "$(pwd):/var/www/html" \
-w /var/www/html \
laravelsail/php82-composer:latest \
composer install --ignore-platform-reqs
Running migrations and seeders.
sail artisan migrate:fresh --seed
It can take some minutes, depending on your machine.
sail artisan db:seed --class=LocalDevelopmentSeeder