Telemeta - INSTALL
==================
+Don't worry, Telemeta is easy to setup as any other Django app !
+
-----------------
Requirements
-----------------
Install the software
-----------------------
+Install Telemeta
+------------------
+
+* Using python package tools (install MANY dependencies automatically)::
+
+ sudo pip install telemeta
+
+ or::
+
+ sudo easy_install telemeta
+
+* Downloading the latest tar archive at http://telemeta.org. Uncompress it and install. For example::
+
+ tar xzf telemeta-1.0.tar.gz
+ cd telemeta-1.0
+ sudo python setup.py install
+
+
Install the dependencies
-------------------------
cd django-json-rpc
python setup.py install
-
-Install Telemeta
-------------------
-
-* Using python package tools::
-
- sudo pip install telemeta
-
- or::
-
- sudo easy_install telemeta
-
-* Downloading the latest tar archive at http://telemeta.org. Uncompress it and install. For example::
-
- tar xzf telemeta-1.0.tar.gz
- cd telemeta-1.0
- sudo python setup.py install
-
-------------------------
Fast testing (sandbox)
-------------------------
----------------------------------
Edit the file settings.py in a text editor.
-Modifiy the following variables:
+Modifiy the following variables::
ADMINS = telemeta requires that you indicate an administrator here
DATABASES = your database setting dict (don't forget to create the database if needed)
'jsonrpc',
)
-Set the following languages:
+Set the following languages::
LANGUAGES = [ ('fr', 'French'),
('en', 'English'),
]
-Set the following Middlewares:
+Set the following Middlewares::
MIDDLEWARE_CLASSES = (
'django.middleware.common.CommonMiddleware',
'django.middleware.locale.LocaleMiddleware',
)
-Add the following variables:
+Add the following variables::
TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.request',