Spotter-VM/ckan-datapusher/srv/ckan-datapusher/conf/datapusher_settings.py

22 lines
342 B
Python

#!/usr/bin/python
import uuid
DEBUG = False
TESTING = False
SECRET_KEY = str(uuid.uuid4())
USERNAME = str(uuid.uuid4())
PASSWORD = str(uuid.uuid4())
NAME = 'datapusher'
SQLALCHEMY_DATABASE_URI = 'sqlite:////srv/ckan-datapusher/data/jobs.db'
HOST = '0.0.0.0'
PORT = 8004
SSL_VERIFY = False
FROM_EMAIL = 'ckan@spotter.ngo'
STDERR = True