Files
Ken Johnson e378651919 Add complete hello world example plugin with web admin page
Demonstrates: lifecycle, routes, admin page, database, events, config,
scheduled tasks, inter-plugin calls, and proper library exports.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 12:25:15 -07:00

17 lines
456 B
JSON

{
"name": "hello",
"version": "1.0.0",
"api_version": 1,
"description": "Hello World — example plugin demonstrating the Fastway plugin API",
"short_description": "Example hello world plugin",
"author": "Fastway BBS",
"license": "GPL-3.0",
"category": "utilities",
"target": "server",
"capabilities": ["routes", "admin", "database", "events", "config", "scheduled"],
"files": {
"binary": "libhello.so",
"web": ["web/"]
}
}