Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 838 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 838 Bytes

准备

配置

  • Typerom
 createConnection({
   type: 'mysql', // mysql数据库
   host: 'localhost',
   port: 3306,
   username: 'root',
   password: '123456',
   database: 'my_test', //database
   synchronize: true,
   logging: false,
   entities: ['src/entity/**/*.ts'],// 实体类地址
 })

前端

部署