A simple, self-hosted game progress tracker. Heavily inspired by Backloggery. Warning: App is in early development and is unstable... Expect breaking changes.
- Catalog your game collection spanning across various platforms and formats
- Set individual game ownership, completion status, achievements, and more
- Import existing progress from popular digital platforms like Steam and RetroAchievements
Clone the repository and install the module
git clone https://github.com/ccriddler/gameorganize/
cd gameorganize
pip install -e .
Alternatively, use pip to install it automatically
pip install git+https://github.com/ccriddler/gameorganize.git
Once the python module is installed, you can run it in development mode with the command:
flask run --app gameorganize:app
To run as a deployed, persistant webapp, use gunicorn or another WSGI server of your choice
gunicorn -w 3 --bind 0.0.0.0:5003 gameorganize:app