lrf 2 months ago
parent
commit
77c3380923
4 changed files with 16 additions and 38 deletions
  1. 1 0
      .gitignore
  2. 3 29
      README.md
  3. 11 8
      src/config/config.prod.ts
  4. 1 1
      src/controller/index.controller.ts

+ 1 - 0
.gitignore

@@ -11,3 +11,4 @@ run/
 *.un~
 .tsbuildinfo
 .tsbuildinfo.*
+service*

+ 3 - 29
README.md

@@ -1,29 +1,3 @@
-# my_midway_project
-
-## QuickStart
-
-<!-- add docs here for user -->
-
-see [midway docs][midway] for more detail.
-
-### Development
-
-```bash
-$ npm i
-$ npm run dev
-$ open http://localhost:7001/
-```
-
-### Deploy
-
-```bash
-$ npm start
-```
-
-### npm scripts
-
-- Use `npm run lint` to check code style.
-- Use `npm test` to run unit test.
-
-
-[midway]: https://midwayjs.org
+# 数据库指令
+grant all privileges on water_service_v2.* to 'water_v2'@'%' identified by 'ccshuitou';
+grant SELECT on water_service.* to 'water_v1'@'%' identified by 'ccshuitou'

+ 11 - 8
src/config/config.prod.ts

@@ -1,15 +1,18 @@
 import { MidwayConfig } from '@midwayjs/core';
 
 /**数据库ip */
-const ip = 'host.docker.internal';
+const ip = '10.2.2.17';
 /**原数据库名称 */
 const dbName = 'water_service';
 /**新数据库 */
 const v2DbName = 'water_service_v2'
 /**数据库用户名 */
-const dbUsername = 'root';
+const dbUsername = 'water_v1';
 /**数据库密码 */
-const dbPwd = 'free1977';
+const dbPwd = 'ccshuitou';
+
+const dbv2 = 'water_v2'
+const dbv2Pwd = 'ccshuitou'
 
 export default {
   keys: '1697684406848_4978',
@@ -28,19 +31,19 @@ export default {
         username: dbUsername,
         password: dbPwd,
         entities: ['./entity'],
-        synchronize: true, // 如果第一次使用,不存在表,有同步的需求可以写 true,注意会丢数据
-        logging: true,
+        synchronize: false, // 如果第一次使用,不存在表,有同步的需求可以写 true,注意会丢数据
+        logging: false,
       },
       v2: {
         type: 'mysql',
         host: ip,
         port: 3306,
         database: v2DbName,
-        username: dbUsername,
-        password: dbPwd,
+        username: dbv2,
+        password: dbv2Pwd,
         entities: ['./entityV2'],
         synchronize: true, // 如果第一次使用,不存在表,有同步的需求可以写 true,注意会丢数据
-        logging: true,
+        logging: false,
       }
     },
   },

+ 1 - 1
src/controller/index.controller.ts

@@ -41,7 +41,7 @@ export class HomeController {
           title: get(i, 'ext.title'),
           date: get(i, 'ext.release_date'),
           brief: get(i, 'txt.txt'),
-          url: get(i, 'title_img')
+          url: get(i, 'ext.title_img')
         }
         newList.push(obj)
       }