Skip to content

zlailari/Towers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setup Instructions:

Make sure you have virtualenv installed

virtualenv -p python3 virtenv-towers

source virtenv-towers/bin/activate

pip install autobahn

Setup npm and start server:

npm install

May have to install things manually

npm install express

npm install body-parser

To Run:

Easy Mode:

bash quickstart.sh

More involved:

node server.js &

cd backend

python start_test_game_server.py &

This fork: All of the important backend stubs are accounted for and partially implemented: the game pieces, engine, and state of the game can be integrated into a server. The current area of concern is integration of the networking loop into the game logic on said server. Once that is resolved it is only a matter of filling out the remainder of our stubs and logic into the MVP.