Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 887 Bytes

README.md

File metadata and controls

42 lines (26 loc) · 887 Bytes

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>