10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-09-27 20:11:25 +02:00
quantum_package/docs/source/programmers_guide/plugins.rst

31 lines
675 B
ReStructuredText
Raw Normal View History

2018-12-25 19:09:41 +01:00
==================
Developing plugins
==================
2018-12-25 10:32:28 +01:00
Creating a repository of plugins
--------------------------------
2018-12-21 15:13:33 +01:00
2018-12-28 15:06:27 +01:00
The purpose of :file:`$QP_ROOT/plugins` is to contain local copies of
external repositories of plugins.
2018-12-21 15:19:28 +01:00
Create a repository, for example :file:`qp_plugins_user`, hosted somewhere
(GitLab, GitHub, etc...), and clone the repository in the
:file:`$QP_ROOT/plugins` directory.
2018-12-21 15:13:33 +01:00
2018-12-25 10:32:28 +01:00
Creating new plugins
--------------------
To create a new plugin named :file:`my_plugin` in this repository, run::
qp_plugins create -n my_plugin -r qp_plugins_user
Now, the plugin needs to be installed to be compiled::
qp_plugins install my_plugin
2018-12-21 15:13:33 +01:00