reorganizing modules and scripts

This commit is contained in:
fawce
2012-02-07 22:16:25 -05:00
parent 4365852b92
commit cca65808d5
101 changed files with 10020 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
class Config(object):
def __init__(self, dct):
self.__dict__.update(dct)
mongo_conn_args = Config({
'mongodb_host' : 'claire.mongohq.com',
'mongodb_port' : 10087,
'mongodb_dbname' : 'quantodata-staging',
'mongodb_user' : 'quantopian',
'mongodb_password' : 'quantopian',
})
root_url = 'http://localhost:8000'
ws_url = 'ws://localhost:8001'