|
|
7 years ago | |
|---|---|---|
| .gitignore | 7 years ago | |
| README.md | 7 years ago | |
| admin_console.py | 7 years ago | |
| client_controller.py | 7 years ago | |
| connection.py | 7 years ago | |
| cool_query.py | 7 years ago | |
| create_new_key.py | 7 years ago | |
| create_new_stock.py | 7 years ago | |
| db_setup.py | 7 years ago | |
| debug.py | 7 years ago | |
| delete_ownable.py | 7 years ago | |
| delete_user.py | 7 years ago | |
| game.py | 7 years ago | |
| model.py | 7 years ago | |
| run_client.py | 7 years ago | |
| run_db_setup.py | 7 years ago | |
| run_server.py | 7 years ago | |
| server_controller.py | 7 years ago | |
| util.py | 7 years ago |
The server is intended to be run within a python 3.6 environment on the host specified in connection.py.
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.
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