diff options
Diffstat (limited to 'docs/install.rst')
-rw-r--r-- | docs/install.rst | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/docs/install.rst b/docs/install.rst index c8b91b3..4d93793 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -62,8 +62,8 @@ Linux distribution repositories. For instance on Debian Wheezy:: python-beautifulsoup tinymce apache2 libgeos-3.3.3 proj-bin gdal-bin \ python-gdal python-lxml python-psycopg2 python-imaging gettext \ postgresql-9.1 postgresql-9.1-postgis libjs-jquery libjs-jquery-ui \ - python-django-celery python-simplejson python-gdal gpsbabel \ - python-pyexiv2 python-feedparser + python-django-celery python-simplejson gpsbabel \ + python-pyexiv2 python-feedparser javascript-common On Debian Squeeze (you need to activate backports):: @@ -73,7 +73,7 @@ On Debian Squeeze (you need to activate backports):: apache2 libgeos-3.2.0 proj-bin gdal-bin python-gdal python-lxml \ python-psycopg2 python-imaging gettext postgresql-8.4 \ postgresql-8.4-postgis libjs-jquery libjs-jquery-ui python-simplejson \ - python-gdal gpsbabel python-pyexiv2 python-feedparser + gpsbabel python-pyexiv2 python-feedparser javascript-common If these packages do not exist in your distribution's repository, please refer @@ -170,17 +170,20 @@ settings are initialized in settings.py. :: * DATABASES: parameters for the database * PROJECT_NAME: name of the project + * SECRET_KEY: a secret key for a particular Django installation. This is + used to provide cryptographic signing, and should be set to a unique, + unpredictable value. Change it! * ROOT_URLCONF: url configuration for your project something like: 'mychimere_project.urls' * EMAIL_HOST: smtp of an email server to send emails - * TINYMCE_URL: url to tinymce path (default is appropriate - for a Debian installation with tinymce activated) + * TINYMCE_URL: url to tinymce path (default is appropriate for a Debian + installation with tinymce activated) * JQUERY_JS_URLS: list of Jquery and Jquery-ui urls (default is appropriate for a Debian installation with Jquery and Jquery-ui activated) * JQUERY_CSS_URLS: list of Jquery and Jquery-ui urls (default is appropriate for a Debian installation with Jquery and Jquery-ui activated) - * GPSBABEL: path to gpsbabel (default is appropriate - for a Debian installation with gpsbabel installed) + * GPSBABEL: path to gpsbabel (default is appropriate for a Debian + installation with gpsbabel installed) * TIME_ZONE: local time zone for this installation * LANGUAGE_CODE: language code for this installation |