Description
January 16, 2013 ยท View on GitHub
Description
This is iPokeMon Server's source code. It uses Redis as its database.
What is iPokeMon?
View the detail description HERE.
Usage
Run it locally:
$ cd iPokeMon-Server
$ redis-server /etc/redis.conf
$ python server.py
Or on remote (e.g. Amazon Web Service):
$ ssh -D 7070 ubuntu@<server-ip>
$ cd iPokeMon-Server
$ redis-server /etc/redis.conf &
$ nohup python server.py &
Shutdown:
$ redis-cli
$ > shutdown
$ > exit
$ ps aux | grep server
$ kill -9 <server.py's pid>
