Spotter-VM/lxc-apps/ckan/install/datapusher_conf/datapusher_settings.py

21 lines
324 B
Python
Raw Normal View History

#!/usr/bin/python
import uuid
DEBUG = False
TESTING = False
SECRET_KEY = str(uuid.uuid4())
USERNAME = str(uuid.uuid4())
PASSWORD = str(uuid.uuid4())
NAME = 'datapusher'
2018-04-21 22:38:30 +02:00
SQLALCHEMY_DATABASE_URI = 'sqlite:////srv/ckan-datapusher/data/jobs.db'
HOST = '0.0.0.0'
2018-03-25 22:55:15 +02:00
PORT = 8080
2018-08-02 10:41:40 +02:00
FROM_EMAIL = 'admin@example.com'
STDERR = True