feat(board-generator): add board code generator and sample CRUD artifacts

Add Node.js CLI tool with Handlebars templates for generating standard CRUD artifacts: Java entity, service, DAO, controller, MyBatis mapper XML, and Vue frontend pages.
Also generate the full SampleTableBoard CRUD reference implementation, update README with backend execution instructions, and add project plan documentation.
This commit is contained in:
2026-05-31 13:22:03 +09:00
parent d5ac812703
commit 12c40c6004
25 changed files with 3305 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"name": "board-generator",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"generate-board": "./src/index.js"
},
"scripts": {
"start": "node ./src/index.js --help"
},
"engines": {
"node": ">=20.14.0"
},
"dependencies": {
"handlebars": "^4.7.8",
"pg": "^8.13.1",
"yaml": "^2.6.0"
}
}