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
@@ -0,0 +1,23 @@
database:
client: postgresql
host: 192.168.0.60
port: 5432
database: casaos
user: casaos
password: casaos
schema: public
paths:
basePackage: com.samsung
javaRoot: src/main/java
mapperRoot: src/main/resources/sql/mybatis/postgresql
vueRoot: frontend/src/components/view/admin
vueBoardDir: pgBoard
generatedRoot: .
conventions:
controllerStyle: formula_like
dateType: java.util.Date
apiStyle: main_do_method
requestBasePrefix: /pg-board
indent: tab