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.