Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 915 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 915 Bytes

example-plugin

A boilerplate for creating mov-cli v4 plugins.

Installation for development.

Here's how to install and add the plugin to mov-cli for development.

  1. Clone the repo.
git clone https://github.com/mov-cli/example-plugin.git
cd example-plugin
  1. Install in editable mode.
make install-editable

or pip install -e . --config-settings editable_mode=compat

  1. Add the plugin to mov-cli.
mov-cli -e
[mov-cli.plugins]
namespace = "package_name" # check out the wiki for more: https://github.com/mov-cli/mov-cli/wiki/Plugins#%EF%B8%8F-how-to-install-plugins
  1. Create away. 😊

The mov-cli-test and mov-cli-youtube plugins are great resources for learning the ins and outs of mov-cli plugin development.