Difference between revisions of "Publishing Plugins"

From MOD Wiki
Jump to navigation Jump to search
(local build documentation)
Line 1: Line 1:
'''WARNING: This page is currently being written, please check in later!'''
+
== Local Deploy ==
  
== Local deploy ==
+
Plugins are stored in <pre>/root/.lv2/</pre>. Typically, directories end up here through the UI installation system, which downloads the bundle from a URL. It is also possible to build a plugin locally and manually copy the archive to this directory. The following process works as of firmware 1.5. The root password is "mod".
  
Plugins are stored in <pre>/root/.lv2/</pre>. Typically, directories end up here through the UI installation system.
+
Install new plugin
  
== Cloud build ==
+
<pre>
 +
scp -r myplugin.lv2 root@modduo.local:~/.lv2/
 +
</pre>
  
Coming soon
+
Upgrade plugin
 +
 
 +
<pre>
 +
scp -r myplugin.lv2 root@modduo.local:~/
 +
ssh root@modduo.local
 +
# enter password
 +
cd .lv2/
 +
mv myplugin.lv2 ../myplugin.lv2.bak
 +
mv ../myplugin.lv2 .
 +
<pre>
 +
 
 +
Each option must be followed by a hard power off.
 +
 
 +
== Unstable Plugins ==
 +
 
 +
To enable the Mod hosted unstable plugin repository, go to the URL with the mod attached via USB
 +
 
 +
http://modduo.local/settings
 +
 
 +
Click the Advanced tab. Check the box to enable unstable plugins.

Revision as of 02:57, 16 December 2017

Local Deploy

Plugins are stored in

/root/.lv2/

. Typically, directories end up here through the UI installation system, which downloads the bundle from a URL. It is also possible to build a plugin locally and manually copy the archive to this directory. The following process works as of firmware 1.5. The root password is "mod".

Install new plugin

scp -r myplugin.lv2 root@modduo.local:~/.lv2/

Upgrade plugin

scp -r myplugin.lv2 root@modduo.local:~/
ssh root@modduo.local
# enter password
cd .lv2/
mv myplugin.lv2 ../myplugin.lv2.bak
mv ../myplugin.lv2 .

Each option must be followed by a hard power off.

Unstable Plugins

To enable the Mod hosted unstable plugin repository, go to the URL with the mod attached via USB http://modduo.local/settings Click the Advanced tab. Check the box to enable unstable plugins.