diff options
Diffstat (limited to 'docs/install.rst')
| -rw-r--r-- | docs/install.rst | 15 | 
1 files changed, 13 insertions, 2 deletions
| diff --git a/docs/install.rst b/docs/install.rst index 4b8ae63..aae008e 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -133,7 +133,6 @@ the more relevant fields are given below (at least check them)::      * SERVER_URL: root of the web address of Chimère      * EXTRA_URL: suffix to the web address of Chimère      * EMAIL_HOST: smtp of an email server to send emails -    * STATIC_URL: url to static files      * 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 @@ -155,11 +154,23 @@ the more relevant fields are given below (at least check them)::      * ROOT_URLCONF: url configuration for your project something like:        'mychimere_project.urls' +Manage media path permission:: + +    cd $INSTALL_PATH/chimere/mychimere_project +    sudo chown -R user:www-data media +    sudo chmod -R g+w media + +Regroup static files in one path:: + +    cd $INSTALL_PATH/chimere/mychimere_project +    ./manage.py collectstatic +  Compiling languages  *******************  If your language is available in the locale directory of chimere, you will just -need to get it compiled. This can be done with (here, "de" stands for german. Replace it with the appropriate language code):: +need to get it compiled. This can be done with (here, "fr" stands for french). +Replace it with the appropriate language code)::      cd $INSTALL_PATH/chimere/mychimere_project      ./manage.py compilemessages -l fr | 
