summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorAamir Khan <syst3m.w0rm@gmail.com>2012-06-27 23:37:40 -0400
committerAamir Khan <syst3m.w0rm@gmail.com>2012-06-27 23:37:40 -0400
commit43e78897bbf14fc35f03fab782500c1beaba717a (patch)
tree53d8f441d828ad274a65227de9c4d36b05ca0915 /README
parent949f617f423c6440cb79e24d49f3b36747680f97 (diff)
downloadhyperkitty-43e78897bbf14fc35f03fab782500c1beaba717a.tar.gz
hyperkitty-43e78897bbf14fc35f03fab782500c1beaba717a.tar.xz
hyperkitty-43e78897bbf14fc35f03fab782500c1beaba717a.zip
Replaced README by README.rst
Diffstat (limited to 'README')
-rw-r--r--README73
1 files changed, 0 insertions, 73 deletions
diff --git a/README b/README
deleted file mode 100644
index c5bb9d6..0000000
--- a/README
+++ /dev/null
@@ -1,73 +0,0 @@
-MailMan App
-===========
-
-This application aims at providing an interface to visualize and explore
-mailman archives.
-
-This is a django project.
-
-
-Dependencies:
--------------
-* Django
-* djangorestframework
-* psycopg2 (for postgresql)
-* sqlalchemy (tested with 0.5.5)
-* django-social-auth
-
-To get it run:
---------------
-
-- Aggregate the static content into their rightfull place:
-python manage.py collectstatic
-
-- Sync the database
-python manage.py syncdb
-
-- Start the server:
-python manage.py runserver
-
-
-To get it running under virtualenv:
------------------------------------
-# Create the virtualenv
-virtualenv mailman3
-# Activate the virtualenv
-cd mailman3
-source bin/activate
-
-# Install django and dependencies
-easy_install django
-easy_install sqlalchemy
-easy_install psycopg2
-easy_install django-social-auth
-easy_install djangorestframework
-easy_install django-gravatar
-
-# Install postgresql
-sudo yum install postgresql
-# Start the database
-sudo service postgresql start
-# Configure your database as you wish
-
-# retrieve the sources there:
-bzr branch bzr://bzr.fedorahosted.org/bzr/hyperkitty/gsoc
-
-# Start it
-cd gsoc
-# Retrieve the sources from kittystore
-git clone https://github.com/pypingou/kittystore.git
-# clean them
-cd kittystore
-rm ./*
-mv kittystore/* .
-rmdir kittystore
-
-# You will want to configure the access to the database in the settings.py file
-# Adjust the variable: KITTYSTORE_URL
-vim settings.py
-
-## Run the server
-cd ..
-python manage.py runserver
-