blob: 945d6acfbd2b6bd4d6e801dbc54347f9417693a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
MailMan App
===========
This application aims at providing an interface to visualize and explore
mailman archives.
This is a django project.
Dependencies:
-------------
* pymongo
* bunch
* Django
* djangorestframework
To get it run:
--------------
- Aggregate the static content into their rightfull place:
python manage.py collectstatic
- 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 bunch
easy_install pymongo
easy_install urlgrabber
easy_install djangorestframework
# Install pymongo and the mongodb database
sudo yum install mongodb-server
# Start the mongo database
sudo service mongod start
# retrieve the sources there:
bzr branch bzr://bzr.fedorahosted.org/bzr/hyperkitty/mongodb
# Start it
cd mongodb
## Run the server
python manage.py runserver
|