added default fallback options, if a user doesn't specify a local ini file and servers

This commit is contained in:
Muneeb Ali
2014-07-22 03:22:09 -07:00
parent c59e2a25f4
commit 51235119a7

View File

@@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
"""
OpenDig
~~~~~
:copyright: (c) 2014 by OpenNameSystem.org
:license: MIT, see LICENSE for more details.
"""
#these default options are provided only for the convenience of users
#users should really specify their own servers in ~/.opendig (in ini format)
DNS_SERVER = '8.8.8.8' #use a Google DNS server as default backup
ONS_SERVER = '162.243.253.65' #use a OneName ONS server as default backup
NAMECOIND_PORT = 8332
NAMECOIND_USER = 'opennamesystem'
NAMECOIND_PASSWD = 'opennamesystem'
USE_HTTPS = True