This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/doc/test-plugin.qdoc
2019-04-08 13:55:15 +02:00

23 lines
813 B
Plaintext

/*!
\page test-plugin.html
\title Testing your plugin
\brief This page describes how to test your plugin that you've just created
In order to make nymead load your plugin, you have 2 options. Either install it into the system or make nymead load it from your plugin build directory.
To install the plugin into the system, run
\code
$ make install
\endcode
To make nymead load the plugin from the plugins build directory, run nymead with an environment variable exported
\code
$ NYMEA_PLUGINS_DIR=/path/to/plugin/ nymead
\endcode
In order to easier debug things, it is advised to enable debug output for the device manager and your plugin. E.g.
\code
$ NYMEA_PLUGINS_DIR=/path/to/plugin nymead -d DeviceManager,YourPlugin
\endcode
*/