30 lines
490 B
Python
Executable File
30 lines
490 B
Python
Executable File
import uuid
|
|
|
|
DEBUG = False
|
|
TESTING = False
|
|
SECRET_KEY = str(uuid.uuid4())
|
|
USERNAME = str(uuid.uuid4())
|
|
PASSWORD = str(uuid.uuid4())
|
|
|
|
NAME = 'datapusher'
|
|
|
|
# database
|
|
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:////tmp/job_store.db'
|
|
|
|
# webserver host and port
|
|
|
|
HOST = '0.0.0.0'
|
|
PORT = 8800
|
|
|
|
# logging
|
|
|
|
#FROM_EMAIL = 'server-error@example.com'
|
|
#ADMINS = ['yourname@example.com'] # where to send emails
|
|
|
|
#LOG_FILE = '/tmp/ckan_service.log'
|
|
STDERR = True
|
|
|
|
# cloud settings
|
|
MAX_CONTENT_LENGTH = 73400320
|