We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dcf59b commit d617f32Copy full SHA for d617f32
docs/plugin.md
@@ -163,23 +163,28 @@ license = "GPL-3.0-only"
163
```
164
zou create-plugin-skeleton --path ./plugins --id my_plugin
165
166
+
167
2. Implement logic in `views.py`.
168
3. Add DB models and generate migrations:
169
170
zou migrate-plugin-db --path ./plugins/my_plugin
171
172
173
4. Package it:
174
175
zou create-plugin-package --path ./plugins/my_plugin --output-path ./dist
176
177
178
5. Install it:
179
180
zou install-plugin --path ./dist/my_plugin.zip
181
182
183
6. List installed plugins:
184
185
zou list-plugins
186
187
188
7. Uninstall if needed:
189
190
zou uninstall-plugin --id my_plugin
0 commit comments