This is iPokeMon Server's source code. It uses Redis as its database.
View the detail description HERE.
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>