{% 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 %}

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.

0 characters

How It Works

  1. Paste your long Minecraft command
  2. Click "Store Command" to generate a link
  3. Copy the generated JSON link
  4. 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:

  1. Install Python 3.10+ and Flask on your server
  2. Deploy the Flask app using a production WSGI server like Gunicorn or uWSGI
  3. Use a reverse proxy (e.g. Nginx or Apache) to route traffic to the Flask app
  4. Optional: Use Docker for easy deployment (see Dockerfile in the project)
  5. Access via:
    https://your-domain/projects/itemeditor/storage
  6. 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 %}