KeyForge game tracker software
Installation instructions I used on Ubuntu on Windows
- Install and setup Ubuntu on Windows: https://ubuntu.com/tutorials/ubuntu-on-windows
- Install python3 and some other packages: sudo apt-get install python3 python3-venv python-dev libmysqlclient-dev
- Install and start mysql server, and create a user with a db.
- Download this git repo: wget https://github.com/avandever/keytracker/archive/refs/heads/main.zip
- Unzip the repo: unzip main.zip
- cd keytracker-main
- Set up the virtual environment: python3 -m venv venv
- Activate the virtual environment: source venv/bin/activate
- Install modules: pip3 install . gunicorn
Run the server:
- Activate the virtual environment: source venv/bin/activate
- Start the server: gunicorn -w 4 "keytracker.server:app"
- Load in your browser (https://127.0.0.1:8000 by default)
Run the client:
- Activate the virtual environment: source venv/bin/activate
- Run the client: keytracker/client.py