0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
🦔 PostHog provides open-source product analytics, session recording, feature flagging and A/B testing that you can self-host.
Go to file
2020-03-21 00:54:20 +01:00
.github safe mkdir for dist folder 2020-03-18 13:39:23 +01:00
bin move package.json to the root folder 2020-03-18 13:41:46 +01:00
frontend show people in a modal 2020-03-21 00:54:20 +01:00
posthog add count (as list is limited to 100) 2020-03-21 00:54:20 +01:00
staticfiles
.babelrc move package.json to the root folder 2020-03-18 13:41:46 +01:00
.deepsource.toml Fix some bug risks and code quality issues 2020-02-21 14:51:44 -08:00
.dockerignore install in docker via root package.json and webpack 2020-03-18 13:41:46 +01:00
.gitignore webpack proof of concept 2020-03-18 13:38:15 +01:00
.prettierrc move package.json to the root folder 2020-03-18 13:41:46 +01:00
app.json Closes #111 Search through user properties 2020-02-17 17:02:50 -08:00
CHANGELOG.md Update CHANGELOG.md 2020-03-18 18:16:12 +00:00
CONTRIBUTING.md Create CONTRIBUTING.md 2020-02-19 16:18:54 -08:00
docker-compose.yml Merge branch 'master' of github.com:PostHog/posthog into adhoc-container-name 2020-02-28 12:47:12 -08:00
gunicorn.config.py Fix deprecation warnings due to invalid escape sequences. 2020-02-21 21:52:11 +05:30
jsconfig.json create aliases for ~, lib and scenes 2020-03-21 00:54:19 +01:00
LICENSE Update license 2020-02-17 11:22:19 -08:00
manage.py
mypy.ini Add posthog analytics module 2020-02-10 13:18:01 -08:00
package.json refactor Trends to functional component and store values in trendsLogic 2020-03-21 00:54:19 +01:00
postcss.config.js move package.json to the root folder 2020-03-18 13:41:46 +01:00
preview.Dockerfile add yarn to dockerfiles 2020-03-18 13:41:46 +01:00
Procfile
production.Dockerfile add yarn to dockerfiles 2020-03-18 13:41:46 +01:00
README.md build editor with webpack 2020-03-18 13:39:23 +01:00
requirements.txt Bump analytics to fix test failure 2020-02-21 16:26:48 -08:00
webpack.config.js create aliases for ~, lib and scenes 2020-03-21 00:54:19 +01:00
yarn.lock refactor Trends to functional component and store values in trendsLogic 2020-03-21 00:54:19 +01:00

PostHog header

PostHog (Community Edition)

PostHog is open source product analytics, built for developers. Automate the collection of every event on your website or app, with no need to send data to 3rd parties. It's a 1 click to deploy on your own infrastructure, with full API/SQL access to the underlying data.

Quick start

1-click Heroku deploy:

See PostHog docs for in-depth walk throughs on functionality.

PostHog dashboard screenshot

Join the PostHog Users Slack if you need help, want to chat, or are thinking of a new feature idea.

Features

  • Event-based analytics at a user level - see which users are doing what in your application.
  • Complete control over your data - host it yourself.
  • Automatically capture clicks and page views to do analyze what your users are doing retroactively.
  • Libraries for JS, Python, Ruby, Node, Go + API for anything else.
  • Beautiful graphs, funnels, user cohorts, user paths and dashboards.
  • Super easy deploy using Docker or Heroku.

Event autocapture

Philosophy

Many engineers find it painful to work out how their products are being used. This makes design decisions tough. PostHog solves that.

We also strongly believe 3rd party analytics don't work anymore in a world of Cookie laws, GDPR, CCPA and lots of other 4 letter acronyms. There should be an alternative to sending all of your users' personal information and usage data to 3rd parties.

PostHog gives you full control over all your users' data, while letting anyone easily perform powerful analytics.

It means you can know who is using your app, how they're using, and where you lose users in the sign up process.

What's cool about this?

PostHog is the only product-focused open source analytics library, with an event and user-driven architecture. That means tracking identifiable (where applicable) user behavior, and creating user profiles. We are an open source alternative to Mixpanel, Amplitude or Heap, designed to be more developer friendly.

There are a couple of session-based open source libraries that are nice alternatives to Google Analytics. That's not what we are focused on.

One-line docker preview

docker run -t -i --rm --publish 8000:8000 -v postgres:/var/lib/postgresql posthog/posthog:preview

This image has everything you need to try out PostHog locally! It will set up a server on http://127.0.0.1:8000.

Deploy to Heroku

Deploy

Production installation

See wiki for production deployment

Development

Running backend (Django)

  1. Make sure you have python 3 installed python3 --version
  2. Make sure you have postgres installed brew install postgres
  3. Start postgres, run brew services start postgresql
  4. Create Database createdb posthog
  5. Navigate into the correct folder cd posthog
  6. Run python3 -m venv env (creates virtual environment in current direction called 'env')
  7. Run source env/bin/activate (activates virtual environment)
  8. Run pip install -r requirements.txt. If you have problems with this step (TLS/SSL error), then run ~ brew update && brew upgrade followed by python3 -m pip install --upgrade pip, then retry the requirements.txt install.
  9. Run migrations DEBUG=1 python3 manage.py migrate
  10. Run DEBUG=1 python3 manage.py runserver
  11. Run the tests and frontend

Running backend tests

bin/tests

Running frontend (React)

If at any point, you get "command not found: nvm", you need to install nvm, then use that to install node.

  1. Make sure you are running Django above in a separate terminal
  2. Now run bin/start-frontend
  3. To see some data on the frontend, you should go to the http://localhost:8000/demo and play around with it, so you can see some data on dashboard

Open source / Paid

This repo is entirely MIT licensed. We charge for things like teams, permissioning, data lake integrations, and support. Please email hey@posthog.com and we will gladly help with your implementation.

Contributors 🦸