Add logfile to settings.
[pithos] / pithos / settings.py.dist
index f6b6f73..5a7267c 100644 (file)
@@ -60,11 +60,6 @@ DATABASES = {
 
 # The backend to use and its initilization options.
 
-# Simple.
-#backend_path = os.path.join(PROJECT_PATH, 'data/pithos/')
-#backend_db = os.path.join(PROJECT_PATH, 'data/pithos/db')
-#BACKEND = ('SimpleBackend', (backend_path, backend_db))
-
 # Modular.
 backend_module = 'pithos.backends.lib.sqlite'
 backend_path = os.path.join(PROJECT_PATH, 'data/pithos/')
@@ -74,6 +69,9 @@ backend_db = os.path.join(PROJECT_PATH, 'data/pithos/db')
 #backend_db = 'postgresql://user:pass@host/db'
 BACKEND = ('ModularBackend', (backend_module, backend_path, backend_db))
 
+# Bypass authentication for user administration.
+BYPASS_ADMIN_AUTH = False
+
 # Local time zone for this installation. Choices can be found here:
 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
 # although not all choices may be available on all operating systems.
@@ -147,8 +145,7 @@ INSTALLED_APPS = (
 #    'django.contrib.messages',
 #    'django.contrib.admin',
 #    'django.contrib.admindocs',
-    'pithos.aai',
-    'pithos.admin',
+    'pithos.im',
     'pithos.api',
     'pithos.public'
 )
@@ -157,6 +154,24 @@ INSTALLED_APPS = (
 # to be this many hours after their creation time.
 AUTH_TOKEN_DURATION = 30 * 24
 
-# Default quota for new users.
-DEFAULT_QUOTA = 10 * 1024 * 1024 * 1024
+# Default setting for new accounts.
+DEFAULT_QUOTA = 50 * 1024 * 1024 * 1024
+DEFAULT_VERSIONING = 'auto'
+
+# Show these many users per page in admin interface.
+ADMIN_PAGE_LIMIT = 100
+
+# Authenticate via Twitter.
+TWITTER_KEY = ''
+TWITTER_SECRET = ''
+
+# Address to use for outgoing emails
+DEFAULT_FROM_EMAIL = 'Pithos <no-reply@grnet.gr>'
+
+# Where users should login with their invitation code
+INVITATION_LOGIN_TARGET = 'https://pithos.dev.grnet.gr/im/login/invitation' \
+                            '?code=%d' \
+                            '&next=https://pithos.dev.grnet.gr/ui'
 
+# Use to log to a file.
+LOGFILE = None