From sources
+++++++++++++
-
Download the latest tar archive at http://telemeta.org.
Uncompress and install it. For example::
If you just want to test Telemeta just now, a sandbox is available in the example/ directory::
- cd example/sandbox_sqlite
- ./manage.py syncdb --migrate
+ cd example/sandbox
+ ./manage.py syncdb
+ ./manage.py migrate
./manage.py runserver 9000
Now browse http://localhost:9000
-
-------------------------------
Create a new Telemeta project
-------------------------------
-Start the project
+Start your project
------------------
-If you haven't already done it, start a new django project::
+For example::
cd ~/my_projects
django-admin startproject mysite
------------------------
Telemeta needs MySQL to work well and fast. So you need to create a MySQL database before trying it.
+But you can also use SQLite, PostgreSQL or Oracle DB.
Configure the telemeta project
TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.request',
- 'django.contrib.auth.context_processors.auth',)
+ 'django.contrib.auth.context_processors.auth',
+ 'django.core.context_processors.i18n',
+ 'django.core.context_processors.media',
+ 'django.core.context_processors.static',)
TELEMETA_ORGANIZATION = name of the organization which hosts this installation
TELEMETA_SUBJECTS = tuple of subject keywords (used for Dublin Core), such as "Ethnology", etc...