• Members 9 posts
    Dec. 4, 2025, 11:29 p.m.

    Allow admins to upload a .zip of valid plugins so it's easy to install down the road in a future update for those who don't want to use the command line. I figured this could be simple like how the themes has the option to upload a .zip file already.

  • Dec. 4, 2025, 11:46 p.m.

    I wish it would be this simple, but under the hood plugins are Django applications and in order to include new app in a running Django instance you have to, at minimum, restart the Django process. This in itself may be doable - some Python servers support reload of the app when files change. You just need to make it work with Docker, and likely deal with extra issues like database migrations, plugins Python dependencies. So its a very complex thing to get done.