Spotter-VM/ckandp/srv/ckandp/conf/datapusher_settings.py

21 lines
314 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/ckandp/data/jobs.db'
HOST = '0.0.0.0'
PORT = 8080
FROM_EMAIL = 'ckan@spotter.ngo'
STDERR = True