Fathom Lite. Simple, privacy-focused website analytics. Built with Golang & Preact. https://usefathom.com/
Go to file
Danny van Kooten da6ffde2ea speed up host & pathname migration by using UNION. perform VACUUM for SQLite migrations. 2018-11-14 12:40:01 +01:00
assets/src clean-up route & func names 2018-11-14 11:47:47 +01:00
docs Adding gzip compression for HTTP and Headers for tracker's sec (#181) 2018-11-13 15:25:55 +01:00
pkg speed up host & pathname migration by using UNION. perform VACUUM for SQLite migrations. 2018-11-14 12:40:01 +01:00
vendor update go deps 2018-11-14 12:02:41 +01:00
.env.example Adding gzip compression for HTTP and Headers for tracker's sec (#181) 2018-11-13 15:25:55 +01:00
.gitignore move cmd into pkg/cli and simplify entry point. add goreleaser configuration for automated dist releases. 2018-10-30 20:08:48 +01:00
.goreleaser.yml provide prebuilt binaries for openbsd & freebsd too 2018-11-01 09:36:11 +01:00
CODE_OF_CONDUCT.md add code of conduct 2018-06-06 10:18:53 +02:00
Dockerfile call binary directly in dockerfile 2018-11-14 11:48:54 +01:00
LICENSE MIT license it is. Add readme instructions for getting a dev version running 2016-12-11 10:05:29 +01:00
Makefile improved referrer parsing. match hostname against blacklist using community-maintained blacklist file graciously provided by Matomo (https://github.com/matomo-org/referrer-spam-blacklist). closes #170 relates to #154 2018-11-09 10:39:14 +01:00
README.md Update README.md (#179) 2018-11-05 19:56:43 +01:00
docker-compose.yml Adding gzip compression for HTTP and Headers for tracker's sec (#181) 2018-11-13 15:25:55 +01:00
gulpfile.js switch to plain css so we can get rid of gulp-sass / node-sass 2018-10-31 19:56:42 +01:00
main.go move cmd into pkg/cli and simplify entry point. add goreleaser configuration for automated dist releases. 2018-10-30 20:08:48 +01:00
mc4wp.db.orig normalize hostname and pathname columns 2018-11-12 14:45:21 +01:00
package-lock.json switch to plain css so we can get rid of gulp-sass / node-sass 2018-10-31 19:56:42 +01:00
package.json switch to plain css so we can get rid of gulp-sass / node-sass 2018-10-31 19:56:42 +01:00

README.md

Fathom - simple website analytics

Go Report Card MIT licensed

Fathom Analytics is a simpler and more privacy-focused alternative to Google Analytics.

Collecting information on the internet is important, but its broken. Weve become complacent in trading information for free access to web services, and then complaining when those web services do crappy things with that data.

The problem is this: if we arent paying for the product, we are the product.

Google Analytics may give you free access to their services but in turn, theyre assembling data profiles on your website visitors, which they can then use for better targeting of advertisements across their network.

We need to stop giving away our data and our users' privacy for free access to a tool.

Fathom respects the privacy of your users and does not collect any personally identifiable information. All while giving you the information you need about your site, so you can make smarter decisions about your design and content.

Screenshot of the Fathom dashboard

Installation

Production

To install and run Fathom in production, see the installation instructions.

Development

For getting a development version of Fathom up & running, go through the following steps.

  1. Ensure you have Go and NPM installed
  2. Download the code: git clone https://github.com/usefathom/fathom.git $GOPATH/src/github.com/usefathom/fathom
  3. Compile the project into an executable: make build
  4. (Optional) Set custom configuration values
  5. (Optional) Register a user account: ./fathom user add --email=<email> --password=<password>
  6. Start the webserver: ./fathom server and then visit http://localhost:8080 to access your analytics dashboard

Docker

Building

Ensure you have Docker installed and run docker build -t fathom .. Run the container with docker run -d -p 8080:8080 fathom.

Running

To run our pre-built Docker image, run docker run -d -p 8080:8080 usefathom/fathom:latest

Tracking snippet

To start tracking, create a site in your Fathom dashboard and copy the tracking snippet to the website(s) you want to track.

Content Security Policy

If you use a Content Security Policy (CSP) to specify security policies for your website, Fathom requires the following CSP directives (replace yourfathom.com with the URL to your Fathom instance):

script-src: yourfathom.com;
img-src: yourfathom.com;

Roadmap

Find our public roadmap here.

If you have an idea or suggestion for Fathom, submit it as an issue here on GitHub.

MIT licensed. Fathom and Fathom logo are trademarks of Fathom Analytics.