Ana. Open Source Web Analytics. ============================== [![Go Report Card](https://goreportcard.com/badge/github.com/dannyvankooten/ana)](https://goreportcard.com/report/github.com/dannyvankooten/ana) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/dannyvankooten/ana/master/LICENSE) 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](https://github.com/dannyvankooten/ana/raw/master/assets/img/screenshot.png?v=6) ## 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. 1. Create or migrate the database: `export $(cat .env | xargs) && $GOPATH/bin/migrate -url mysql://$ANA_DATABASE_USER:$ANA_DATABASE_PASSWORD@$ANA_DATABSE_HOST/$ANA_DATABASE_NAME -path ./db/migrations up` 3. Compile into binary: `make` 4. Create your user account: `ana register ` 5. Run default Gulp task to build static assets: `gulp` 6. 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. ```html ``` ## License MIT licensed.