skeleton
Some checks failed
CI / Test (push) Failing after 33s

This commit is contained in:
2026-03-25 12:42:19 +01:00
commit 647d5537ff
18 changed files with 701 additions and 0 deletions

13
assets/css/my_plugin.css Normal file
View File

@@ -0,0 +1,13 @@
/*
* Plugin CSS entry point.
*
* Served at /plugins-assets/my_plugin/my_plugin.css
* and included in the page layout if declared in manifest.json assets.global_css.
*
* Prefix all selectors with your plugin name to avoid collisions
* with host or other plugin styles.
*/
.my-plugin {
/* Plugin-scoped styles go here */
}

15
assets/js/my_plugin.js Normal file
View File

@@ -0,0 +1,15 @@
// Plugin JavaScript entry point.
//
// This file is served by the host at /plugins-assets/my_plugin/my_plugin.js
// and included in the page layout if declared in manifest.json assets.global_js.
//
// To register LiveView hooks:
//
// window.TribesPluginHooks = window.TribesPluginHooks || {};
// window.TribesPluginHooks["MyPluginHook"] = {
// mounted() {
// console.log("MyPlugin hook mounted");
// }
// };
console.log("my_plugin loaded");