Browse Source

Document celutz settings

Baptiste Jonglez 8 years ago
parent
commit
c3c4ae22f2
1 changed files with 7 additions and 1 deletions
  1. 7 1
      INSTALL.md

+ 7 - 1
INSTALL.md

@@ -37,13 +37,19 @@ Configuration
 To configure the application, don't edit `celutz/settings.py` directly, but
 instead create a file `celutz/local_settings.py` with your local modifications.
 
-Some things you should (must?) configure:
+Some Django things you should really configure:
 
 - `SECRET_KEY`
 - `ALLOWED_HOSTS`
 - `DEBUG`
 - database configuration
 
+There are also celutz-specific settings:
+
+- `LOGIN_REQUIRED`: is celutz public or are users required to login first?
+- `PANORAMA_TILES_DIR`: where the tiles are, relatively to `MEDIA_ROOT` and `MEDIA_URL`
+- `PANORAMA_MAX_DISTANCE`: maximum distance (in meters) after which reference points are considered to be too far away
+
 Then run the migrations:
 
     python manage.py migrate