Fathom Lite. Simple, privacy-focused website analytics. Built with Golang & Preact. https://usefathom.com/
Go to file
Danny van Kooten c0b5318f07 Merge pull request #12 from jro7/jro7/update-readme
update installation instructions, thanks @jro7
2017-08-12 12:20:36 +02:00
api remove stray or unnecessary log statements 2017-01-25 22:53:28 +01:00
assets when a new message is set, clear previous timeout 2017-01-13 13:41:30 +01:00
commands use buffered INSERT for collecting pageviews & misc improvements to datastore retrieval func's 2017-01-25 22:48:24 +01:00
count use buffered INSERT for collecting pageviews & misc improvements to datastore retrieval func's 2017-01-25 22:48:24 +01:00
datastore remove stray or unnecessary log statements 2017-01-25 22:53:28 +01:00
models use buffered INSERT for collecting pageviews & misc improvements to datastore retrieval func's 2017-01-25 22:48:24 +01:00
vendor vendor robfig/cron 2017-04-18 21:55:30 +02: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 update readme, database migrations will now run automatically 2017-01-25 15:19:08 +01:00
.gitignore stop gitignoring vendor dir, closes #6 2017-01-13 11:44:38 +01:00
Dockerfile Create Dockerfile and add example docker-compose.yml 2016-12-25 16:33:57 +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 Create a Makefile, delete do script 2016-12-25 16:33:23 +01:00
README.md update installation instructions 2017-08-11 14:23:27 +00:00
ROADMAP.md Get rid of `archive` table & introduce `total_*` tables for each metric. 2016-12-24 13:07:33 +02:00
ana.go first stab at supporting postgres driver. #9 2017-01-25 13:46:43 +01:00
docker-compose.yml Create Dockerfile and add example docker-compose.yml 2016-12-25 16:33:57 +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 update yarn deps 2017-01-06 15:59:02 +01:00

README.md

Ana. Open Source Web 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 Ana in production yet unless you like spending time on it. Things will keep changing for the next few months.

Screenshot of the Ana dashboard

Installation

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

  1. get code: go get -u github.com/dannyvankooten/ana (or git clone repo into your $GOPATH )
  2. run npm install (in code directory) to install all required dependencies
  3. Rename .env.example to .env and set your database credentials.
  4. Compile into binary: make
  5. Create your user account: ana register <email> <password>
  6. Run default Gulp task to build static assets: gulp
  7. Start the webserver: ana server --port=8080 & 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.