You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import envvars as e
|
|
|
|
conf_dir = os.path.normpath(os.path.join(os.path.dirname(__file__), '..'))
|
|
e.load(os.path.join(conf_dir, 'conf/env'))
|
|
|
|
port = e.get('FLOWER_PORT')
|
|
|
|
broker = e.get('CELERY_BROKER_URL')
|
|
|
|
basic_auth = [e.get('FLOWER_BASIC_AUTH')]
|
|
|