Fathom Lite. Simple, privacy-focused website analytics. Built with Golang & Preact. https://usefathom.com/
Go to file
Danny van Kooten 5e4b878d19 add tests for api request helper funcs 2016-12-11 14:43:11 +01:00
api add tests for api request helper funcs 2016-12-11 14:43:11 +01:00
assets Abstract calculating totals per category into count.Custom 2016-12-11 12:52:10 +01:00
commands abstract total visitor count away into count package 2016-12-11 11:53:03 +01:00
count add test for count.fill func 2016-12-11 14:33:05 +01:00
db abstract total visitor count away into count package 2016-12-11 11:53:03 +01:00
models add loading indicator to most widgets 2016-12-10 18:19:44 +01:00
views use gorilla mux for routing 2016-11-22 20:57:16 +01:00
.babelrc get secret & db creds from environment (file) 2016-11-25 16:30:38 +01:00
.env.example get secret & db creds from environment (file) 2016-11-25 16:30:38 +01:00
.gitignore introduced table to x1000 UI performance when working with big datasets 2016-12-11 10:58:58 +01:00
LICENSE MIT license it is. Add readme instructions for getting a dev version running 2016-12-11 10:05:29 +01:00
README.md MIT license it is. Add readme instructions for getting a dev version running 2016-12-11 10:05:29 +01:00
ROADMAP.md Abstract calculating totals per category into count.Custom 2016-12-11 12:52:10 +01:00
ana.go add CLI functionality to main package, with create_user command 2016-12-08 20:45:26 +01:00
do abstract total visitor count away into count package 2016-12-11 11:53:03 +01:00
gulpfile.js fix seed 2016-12-10 15:58:54 +01:00
package.json add gulp task for minification 2016-12-08 12:43:13 +01:00
yarn.lock add gulp task for minification 2016-12-08 12:43:13 +01:00

README.md

Ana. Open Source Web Analytics.

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.

Screenshot of the Ana dashboard

Installation

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

  1. Rename .env.example to .env and set your database credentials.
  2. Run the database migrations: ./do database_migrate up
  3. Install Go dependencies: ./do install_dependencies
  4. Compile into binary: ./do bin
  5. Create your user account: ./ana -create_user -email="johndoe@email.com" -password="...."
  6. Run default Gulp task to build static assets: gulp
  7. Start the webserver: ./ana & visit localhost:8080 to access your analytics dashboard.

To start tracking, include the following JavaScript on your site and replace ana.dev with the URL to your Ana instance.

<!-- Ana tracker -->
<script>
(function(d, w, u, o){
	w[o]=w[o]||function(){
		(w[o].q=w[o].q||[]).push(arguments)
	};
	a=d.createElement('script'),
	m=d.getElementsByTagName('script')[0];
	a.async=1; a.src=u;
	m.parentNode.insertBefore(a,m)
})(document, window, '//ana.dev/tracker.js', 'ana');
ana('setTrackerUrl', '//ana.dev/collect');
ana('trackPageview');
</script>
<!-- / Ana tracker -->

License

MIT licensed.