上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 安装postcss插件 npm install -D postcss-class-rename css-byebye postcss-class-rename 是将小程序不支持的css类重命名 css-byebye 移除不支持的css类,比如:* {} tailwindcss配置移除不支持的css样 阅读全文
posted @ 2021-01-10 10:51 冬天之歌 阅读(2824) 评论(0) 推荐(0) 编辑
摘要: 中文安装文档 解决docker部署问题: 参考 minikube start --vm-driver=docker --base-image="anjone/kicbase" --registry-mirror=https://f1z25q5p.mirror.aliyuncs.com shell 补 阅读全文
posted @ 2020-09-28 15:07 冬天之歌 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 参考回答 阅读全文
posted @ 2020-09-17 18:08 冬天之歌 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 参考文档 下载docker版本匹配的kubectl(windows下载后放到 C:\Windows\System32 目录即可) 使用脚本下载对应的docker镜像 k8s.gcr.io/pause:3.1=registry.cn-hangzhou.aliyuncs.com/google_conta 阅读全文
posted @ 2020-09-15 14:11 冬天之歌 阅读(172) 评论(0) 推荐(0) 编辑
摘要: Nginx 代理 Redis 修改/etc/nginx/nginx.conf 添加如下内容: stream { upstream redis { server *redis-addres*:6379 max_fails=3 fail_timeout=30s; #*redis-addres*替换为真是 阅读全文
posted @ 2020-09-15 09:23 冬天之歌 阅读(3586) 评论(0) 推荐(0) 编辑
摘要: 发布Go module 添加license 符合Major.Minor.Patch发布命名规则 go list -m module 进行测试 拉取私有module Git 提示密码 export GIT_TERMINAL_PROMPT=1 跳过代理 阅读全文
posted @ 2020-08-15 10:08 冬天之歌 阅读(165) 评论(0) 推荐(0) 编辑
摘要: syntax = "proto3"; // 须在文件第一行指定,不指定默认为proto2 /* proto file search by -I/--proto_path flag. 指定protobuf文件位置 */ import "old.proto"; import public "new.pr 阅读全文
posted @ 2020-07-30 13:12 冬天之歌 阅读(334) 评论(0) 推荐(0) 编辑
摘要: Nuxt axios 集成 阅读全文
posted @ 2020-07-18 16:46 冬天之歌 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 参考教程 import 后面是包的导入路径 import后包的使用是使用导入路径对应的 package 名而非最后的目录名 目录名和包名建议一致 同一目录下使用相同的包名,因为包通过路径导入 阅读全文
posted @ 2020-07-14 21:29 冬天之歌 阅读(1279) 评论(0) 推荐(0) 编辑
摘要: protobuf 是一种数据交换格式,类似json。 grpc 是一种服务调用协议。 golang 需要下载安装 protoc 二进制文件支持编译 下载地址,下载后解压将protoc复制到/usr/local/bin目录下,将include文件复制到/usr/loca/include目录下。 编译p 阅读全文
posted @ 2020-07-11 16:34 冬天之歌 阅读(261) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页