mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-05-23 15:24:57 +08:00
17 lines
396 B
Python
17 lines
396 B
Python
MEMCACHED_USERNAME = None
|
|
MEMCACHED_PASSWORD = None
|
|
|
|
NAMECOIND_SERVER = 'localhost'
|
|
NAMECOIND_PORT = '8332'
|
|
NAMECOIND_USER = 'default'
|
|
NAMECOIND_PASSWD = 'default'
|
|
MEMCACHED_SERVERS = ['127.0.0.1:11211']
|
|
NAMECOIND_USE_HTTPS = False
|
|
|
|
try:
|
|
API_USERNAME = os.environ['API_USERNAME']
|
|
API_PASSWORD = os.environ['API_PASSWORD']
|
|
except:
|
|
API_USERNAME = 'default'
|
|
API_PASSWORD = 'default'
|