Files
echoboard/echoboard.plugins.ts
lashman f07eddf29e initial project setup
Fastify + Prisma backend, React + Vite frontend, Docker deployment.
Multi-board feedback platform with anonymous cookie auth, passkey
upgrade path, ALTCHA spam protection, plugin system, and full
privacy-first architecture.
2026-03-19 18:05:16 +02:00

9 lines
244 B
TypeScript

// Active plugins - import and add to the array to enable
// Remove from array and delete the plugin directory to disable
// import { giteaPlugin } from './plugins/gitea/src/index.js';
export const plugins: unknown[] = [
// giteaPlugin,
];