git clone --reference /path/to/your/compass.git/incarnation mirror_URLto save bandwidth during cloning.
description | Script and website to extract relay statistics |
owner | delber@riseup.net |
last change | Mon, 10 Sep 2012 07:29:27 +0000 (10 07:29 +0000) |
URL | git://repo.or.cz/compass/delber.git |
https://repo.or.cz/compass/delber.git | |
push URL | ssh://repo.or.cz/compass/delber.git |
https://repo.or.cz/compass/delber.git (learn more) | |
bundle info | delber.git downloadable bundles |
content tags |
Show various metrics related to tor relays.
* Install Pip
$ apt-get install python-dev python-pip
* Use requirements.txt to install dependancies
$ pip install -r requirements.txt
* Install foreman
$ gem install foreman
* Use the Procfile to run the app
$ foreman start
In case you want to use Apache,
$ cat app.wsgi
#!/usr/bin/python
import os, sys
sys.path.append('/path/to/app')
from app import app as application
$ cat /etc/apache2/sites-available/default
WSGIDaemonProcess compass user=nobody group=compass threads=5
WSGIScriptAlias /compass /srv/compass.torproject.org/compass/app.wsgi
<Directory /srv/compass.torproject.org/compass>
WSGIProcessGroup compass
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
12 years ago | master | logtree |