From d5775a0ee724099fe820bfe9b552046bb88fd1eb Mon Sep 17 00:00:00 2001 From: Ben Adida <ben@adida.net> Date: Sat, 30 Aug 2014 20:34:39 +0000 Subject: [PATCH] moving readme --- README.md | 5 +++++ README.txt | 42 ------------------------------------------ 2 files changed, 5 insertions(+), 42 deletions(-) create mode 100644 README.md delete mode 100644 README.txt diff --git a/README.md b/README.md new file mode 100644 index 0000000..77ed22a --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Helios Election System + +Helios is an end-to-end verifiable voting system. + + \ No newline at end of file diff --git a/README.txt b/README.txt deleted file mode 100644 index caf0756..0000000 --- a/README.txt +++ /dev/null @@ -1,42 +0,0 @@ -The Helios Election Server -========================== - -LICENSE: this code is released under the GPL v3 or later. - -NEEDS: -- as of Helios v3.1, requires Django 1.2.5+ - -- http://github.com/openid/python-openid -- rabbitmq 1.8 --- http://www.rabbitmq.com/debian.html --- update the deb source --- apt-get install rabbitmq-server - -- celery 2.0.2 and django-celery 2.0.2 for async jobs --- http://celeryq.org --- apt-get install python-setuptools --- easy_install celery --- easy_install django-celery - -- South for schema migration --- easy_install South - -- django-webtest for testing --- http://pypi.python.org/pypi/django-webtest --- easy_install webtest --- easy_install django-webtest - -GETTING SOUTH WORKING ON EXISTING INSTALL -- as of Helios v3.0.4, we're using South to migrate data models -- if you've already loaded the data model beforehand, you need to tell South that you've migrated appropriately -- so, if your data model is up to date with the code, do - -python manage.py syncdb - -to get the south db models set up, and then: - -python manage.py migrate --list - -- if there are some unchecked migrations, and you are SURE that your database is up to date with the models (which should be the case if you're on a v3.0.x version), then do - -python manage.py migrate --fake -- GitLab