Statistics
| Branch: | Tag: | Revision:

root / docs / source / adminguide.rst @ 8ed29e14

History | View | Annotate | Download (941 Bytes)

1
Administrator Guide
2
===================
3

    
4
Simple Setup
5
------------
6

    
7
Assuming a clean debian squeeze (stable) installation, use the following steps to run the software.
8

    
9
Install packages::
10

    
11
  apt-get install git python-django python-django-south python-setuptools python-sphinx python-httplib2
12
  apt-get install apache2 libapache2-mod-wsgi
13

    
14
Get the source::
15

    
16
  cd /
17
  git clone https://code.grnet.gr/git/astakos
18

    
19
Setup the files::
20

    
21
  cd /astakos/astakos
22
  python manage.py syncdb (At this point you will prompt to create a superuser)
23
  python manage.py migrate im 0001 --fake
24
  python manage.py migrate im
25
  python loaddata im/fixtures/admin_user.json (Load additional information for the newly created superuser)
26
  cd /astakos
27
  python setup.py build_sphinx
28
  python manage runserver
29

    
30
It is advised that you create a ``settings.local`` file to place any configuration overrides (at least change ``SECRET_KEY``).
31

    
32
Twitter Setup
33
-------------