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.
This commit is contained in:
2026-03-19 18:05:16 +02:00
commit f07eddf29e
77 changed files with 7031 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "echoboard",
"version": "0.1.0",
"private": true,
"license": "CC0-1.0",
"workspaces": [
"packages/api",
"packages/web",
"plugins/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "npm run dev -w packages/api",
"dev:web": "npm run dev -w packages/web",
"build": "npm run build -w packages/api && npm run build -w packages/web",
"build:api": "npm run build -w packages/api",
"build:web": "npm run build -w packages/web",
"start": "npm run start -w packages/api",
"db:migrate": "npm run db:migrate -w packages/api",
"db:generate": "npm run db:generate -w packages/api",
"create-admin": "npm run create-admin -w packages/api"
},
"devDependencies": {
"concurrently": "^9.1.0",
"typescript": "^5.7.0"
}
}