No Description

Eren Yilmaz 2aeedaaba6 "Any whitespace" might imply that newlines are possible 6 years ago
.gitignore de8ab8b82c Do not include secret plans in git 6 years ago
README.md 31bea9e15f update README 6 years ago
admin_console.py 784810b55c deleting orders, leaderboard and register crash fix 6 years ago
client_controller.py 2aeedaaba6 "Any whitespace" might imply that newlines are possible 6 years ago
connection.py d10dd2f004 print what is sent to server if debugging 6 years ago
create_new_key.py edf9155b79 add some more fake loading bars 6 years ago
create_new_stock.py c3676795f6 Fix #15 6 years ago
db_setup.py 602d7c513c fix table creation 6 years ago
debug.py 468abb1e84 deploy client without debug in README 6 years ago
delete_ownable.py 356e53047a delete users and ownables 6 years ago
delete_user.py 356e53047a delete users and ownables 6 years ago
drop_old_sessions.py 9a624badcb script for dropping old sessions 6 years ago
game.py 9600aecfd7 only integer amounts for new orders 6 years ago
hash_all_users_passwords.py 653c12b4b8 hash passwords in database 6 years ago
model.py c3676795f6 Fix #15 6 years ago
publish_news_item.py e94adfd4d2 improve command ordering 6 years ago
run_client.py a2573f8448 tradables command and public leaderboard access 6 years ago
run_db_setup.py f3eb6d15bd more fixing trades 6 years ago
run_server.py e1c90ab7e5 add performance measurements 6 years ago
server_controller.py c3676795f6 Fix #15 6 years ago
util.py 653c12b4b8 hash passwords in database 6 years ago

README.md

README

How to play

Windows (64 Bit only???)

You can either

Any machine capable of running python 3

You can clone this repository and use python (3.6 recommended) to execute the client. Make sure you set the debug flag in debug.py to False, otherwise you will not connect to the server.

If you know python and want to develop any cool features for you personal client, feel free to fork this repository and create a pull request.

Compilation

Server

The server is intended to be run within a python 3.6 environment on the host specified in connection.py.

On the server you can install the required packages using pip:

pip3 install bottle requests

and start the server using

python3 -OO run_server.py

Client

The client is intended to be compiled with

echo debug = False > debug.py &&\
python -OO -m PyInstaller run_client.py &&\
echo debug = True > debug.py

where pyinstaller can be installed using pip.