Fathom Lite. Simple, privacy-focused website analytics. Built with Golang & Preact. https://usefathom.com/
Go to file
Danny c5b0d051a2 stretch totals sidebar to top, move chart to right area 2018-05-23 09:24:55 +02:00
assets stretch totals sidebar to top, move chart to right area 2018-05-23 09:24:55 +02:00
cmd/fathom output log messages during bootstrap, eg with config file location 2018-05-23 09:03:42 +02:00
pkg print message if using default config 2018-05-23 09:11:28 +02:00
vendor use github.com/urfave/cli as cli framework 2018-05-14 13:42:03 +02:00
.env.example simple bc for old --port arg 2018-05-14 14:54:16 +02:00
.gitignore dont gitignore main pkg... 2018-05-14 14:11:52 +02:00
Dockerfile update command in dockerfile 2018-05-14 16:34:13 +02:00
LICENSE MIT license it is. Add readme instructions for getting a dev version running 2016-12-11 10:05:29 +01:00
Makefile show pageview & visitor chart for week/month/year periods 2018-05-22 16:01:59 +02:00
README.md Fix missing script id attribute in README 2018-05-17 14:01:52 +02:00
docker-compose.yml update docker-compose file to version 3 & use new fathom image 2018-05-10 22:21:31 +02:00
gulpfile.js show pageview & visitor chart for week/month/year periods 2018-05-22 16:01:59 +02:00
package-lock.json wip on chart implementation using d3 2018-05-22 12:23:17 +02:00
package.json fill dates with no data with zeroes & add d3-transition 2018-05-22 15:45:22 +02:00

README.md

Fathom - simple website analytics

Go Report Card MIT licensed

This is nowhere near being usable, let alone stable. Please treat as a proof of concept while we work on getting this to a stable state. Do not run Fathom in production yet unless you like spending time on it. Things will keep changing for the next few months.

Screenshot of the Fathom dashboard

Installation

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

  1. Ensure you have Golang installed properly
  2. Get code: git clone git@github.com:usefathom/fathom.git $GOPATH/src/github.com/usefathom/fathom
  3. Compile into binary & prepare assets: make all
  4. Register your user account: fathom register <email> <password>
  5. Start the webserver: fathom server and then visit http://localhost:8080 to access your analytics dashboard.

To start tracking, include the following JavaScript on your site and replace yourfathom.com with the URL to your Fathom instance (twice).

<!-- Fathom - simple website analytics - https://github.com/usefathom/fathom -->
<script>
(function(f, a, t, h, o, m){
	a[h]=a[h]||function(){
		(a[h].q=a[h].q||[]).push(arguments)
	};
	o=f.createElement('script'),
	m=f.getElementsByTagName('script')[0];
	o.async=1; o.src=t; o.id='fathom-script';
	m.parentNode.insertBefore(o,m)
})(document, window, '//yourfathom.com/tracker.js', 'fathom');
fathom('trackPageview');
</script>
<!-- / Fathom -->

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