# poetize **Repository Path**: black_luk/poetize ## Basic Information - **Project Name**: poetize - **Description**: poetize 二次开发, 后端使用go 部署更简单的 - **Primary Language**: Unknown - **License**: AGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-08-28 - **Last Updated**: 2025-08-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 由 poetize 修改, 开源的 poetize 很多有问题 ### 前端部署 ### 环境 node 最新 ### 配置 > poetize-ui/src/utils/constant.js ``` baseURL: "http://127.0.0.1:8080", imBaseURL: "http://127.0.0.1:8080/im", ``` ### 前端启动 ``` cd poetize-ui npm i npm run serve ``` ### poetize 后端 ### 环境 最新的go mysql redis ### 配置文件 api/config.yaml 从 api/default.config.yaml 复制一份 ``` addr: :8080 localoss: E:\oss url: http://127.0.0.1:8080 mysql: host: 172.21.174.119 port: 3306 user: cander password: 123456 database: poetize # 打印sql debug: true redis: addr: 192.168.170.56 password: db: 0 log: level: debug file: size: 0 everyday: true expire: 30 email: user: password: smtp: port: ``` ### 启动 ``` cd api go env -w GOPROXY=https://goproxy.cn go mod tidy go run main.go ```