From ff5b0c3a54bb3ce437361a1de475ba30b376cf4b Mon Sep 17 00:00:00 2001 From: SimolZimol <70102430+SimolZimol@users.noreply.github.com> Date: Wed, 7 Jan 2026 03:55:19 +0100 Subject: [PATCH] modified: templates/itemeditor_command_storage.html --- templates/itemeditor_command_storage.html | 32 ++++++++++++++++------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/templates/itemeditor_command_storage.html b/templates/itemeditor_command_storage.html index 68861a1..0367a65 100644 --- a/templates/itemeditor_command_storage.html +++ b/templates/itemeditor_command_storage.html @@ -109,18 +109,25 @@
Load command in your plugin:
-GET https://devanturas.net/projects/itemeditor/storage/{uuid}
-
-Response:
+ Self-Hosting on Your Webserver
+ You can run this command storage system on your own webserver for production use:
+
+ - Install Python 3.10+ and Flask on your server
+ - Deploy the Flask app using a production WSGI server like Gunicorn or uWSGI
+ - Use a reverse proxy (e.g. Nginx or Apache) to route traffic to the Flask app
+ - Optional: Use Docker for easy deployment (see
Dockerfile in the project)
+ - Access via:
https://your-domain/projects/itemeditor/storage
+ - API endpoint:
https://your-domain/projects/itemeditor/storage/<uuid>
+
+ GET https://your-domain/projects/itemeditor/storage/<uuid>
{
"command": "your command here",
- "created_at": "2026-01-07T12:00:00",
- "expires_at": "2026-01-07T12:30:00"
-}
+ "created_at": "...",
+ "expires_at": "..."
+}
+ For best performance and security, do not use the Flask development server in production. Use Gunicorn + Nginx or Docker for real deployments.