{% extends "base.html" %} {% block title %}Item Editor - Command Storage - Devanturas{% endblock %} {% block description %}Store commands longer than 256 characters temporarily for Minecraft Item Editor plugin{% endblock %} {% block content %} Projects / Item Editor / Command Storage Item Editor Command Storage Store long commands (>256 chars) temporarily and generate a retrievable link Store Command Paste your Minecraft command below. Commands longer than 256 characters will be stored for 30 minutes and a unique retrieval link will be generated. Minecraft Command 0 characters Store Command Command Stored Successfully! Your command has been stored for 30 minutes. Retrieval Link (JSON): Copy Use this link in your Item Editor plugin to load the command. Expires in: 30 minutes Store Another Command How It Works Paste your long Minecraft command Click "Store Command" to generate a link Copy the generated JSON link Use the link in your Item Editor plugin Storage Limits Duration: 30 minutes Max Length: 10,000 characters Format: JSON response Access: Anyone with link 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": "...", "expires_at": "..." } For best performance and security, do not use the Flask development server in production. Use Gunicorn + Nginx or Docker for real deployments. {% endblock %}
Store long commands (>256 chars) temporarily and generate a retrievable link
Paste your Minecraft command below. Commands longer than 256 characters will be stored for 30 minutes and a unique retrieval link will be generated.
Your command has been stored for 30 minutes.
You can run this command storage system on your own webserver for production use:
Dockerfile
https://your-domain/projects/itemeditor/storage
https://your-domain/projects/itemeditor/storage/<uuid>
GET https://your-domain/projects/itemeditor/storage/<uuid> { "command": "your command here", "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.