From 85003665c9a9caf00c3139eb73c88614cf6a2a3d Mon Sep 17 00:00:00 2001 From: omicron Date: Thu, 25 Sep 2025 21:06:17 +0200 Subject: [PATCH] Update README with instructions for running the webserver --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3240b51..1403918 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,23 @@ -Quick & dirty commit of current progress to share with others. +# Installation +Don't. + +# Development installation + +Create a virtual environment and install the development set: ``` python -m venv venv source venv/bin/activate pip install --editable .[dev] +``` + +Set your save path and run the webserver to interact with the storage system: +``` +export D2SAVE_PATH="/path/to/saves" +flask --app d2warehouse.app run +``` + +Some debug tooling: +``` d2dump /path/to/stash.d2i ```