/iPokeMon-Server

iPokeMon Server.

Primary LanguagePythonMIT LicenseMIT

iPokeMon (Server)

Build Status

Description

This is iPokeMon Server's source code. It uses Redis as its database.

What is iPokeMon?

View the detail description HERE.

CLIENT SOURCE CODE.

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>