18 lines
427 B
Python
Executable File
18 lines
427 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
SECRET_KEY = "$&@+j^qy!((+ml4pvnwl+uui6tvil2-6=10ihwso=6pee6mwec"
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.mysql',
|
|
'NAME': 'seahub-db',
|
|
'USER': 'seafile',
|
|
'PASSWORD': 'seafile+123',
|
|
'HOST': '127.0.0.1',
|
|
'PORT': '3306'
|
|
}
|
|
}
|
|
|
|
SERVER_ROOT = 'https://smartinspace.ai:44300'
|
|
FILE_SERVER_ROOT = 'https://smartinspace.ai:44300/seafhttp'
|
|
|