epifab / pypoker

Python poker game application (holdem, traditional 5 card draw)
https://pypoker.herokuapp.com
GNU General Public License v3.0
101 stars 50 forks source link

Installation on Mac OS X #5

Closed b1t3s1z3 closed 3 years ago

b1t3s1z3 commented 6 years ago

Hi there,

Am trying to install this software on my machine, and have managed to work my way past several installation hurdles. I have run into the following error though:

Traceback (most recent call last): File "texasholdem_poker_service.py", line 21, in <module> mongo_db = pymongo.MongoClient(mongo_url).get_default_database() File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pymongo/mongo_client.py", line 1742, in get_default_database raise ConfigurationError('No default database defined') pymongo.errors.ConfigurationError: No default database defined

I've never used Mongo before – how do I "define" what the default database should be? Do I already have a default database? I've been searching on the web but as a newb to this particular software, I'm not entirely sure what to search for. Any help would be greatly appreciated.

b1t3s1z3 commented 6 years ago

Hi there,

I appear to have resolved the above issue, and appear almost able to use the software, as I have started the server successfully.

But how do I actually launch the game? When I type python2 client_web.py into the command line, nothing happens. Is that how I'm supposed to initialize the client?

epifab commented 5 years ago

hi, sorry for replying so late. it's been ages since I last worked on this, but looking at the Procfile you'll have to start both a worker (the poker server) as well as the web application. Bear in mind you'll also need to have a redis up and running for them to communicate.