Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 1.02 KB

README.md

File metadata and controls

33 lines (27 loc) · 1.02 KB

Overview

A simple, self-hosted game progress tracker. Heavily inspired by Backloggery. Warning: App is in early development and is unstable... Expect breaking changes.

Features

  • 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

Installation

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

Running

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