23 lines
529 B
Python
Executable File
23 lines
529 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
SECRET_KEY = "b'h#cff-ei%$8+zlpxf-*fu)tg4i4^j1c=+144@hl%d5ff8t!*c*'"
|
|
|
|
#SERVE_STATIC = False
|
|
SITE_ROOT="/"
|
|
LOGIN_URL="/accounts/login/"
|
|
FILE_SERVER_ROOT="https://cloud.asolvo.de/seafhttp"
|
|
#MEDIA_URL = "/seafmedia/"
|
|
#COMPRESS_URL = MEDIA_URL
|
|
#STATIC_URL = MEDIA_URL + "assets/"
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
'NAME': 'seahub-db',
|
|
'USER': 'seafile',
|
|
'PASSWORD': '4w3s0m3pwd',
|
|
'HOST': '127.0.0.1',
|
|
'PORT': '3306'
|
|
}
|
|
}
|
|
|