摘要:
当前系统 Debian GNU/Linux 12 安装命令 1、sudo apt update //更新系统 2、sudo apt-get install rabbitmq-server //安装rabbitMq 服务 3、sudo service rabbitmq-server start //启 阅读全文
摘要:
.net core 及 pgsql 在 Docker 中部署运行 当前运行linux 系统为 : CentOS Stream release 8 .net sdk 7.0、pgsql 12.0 、nginx 1.14.1、docker 24.0.1 在安装前,建议更新系统中依赖包: sudo yum 阅读全文
摘要:
.net core 自颁发ssl证书,及客户端证书验证 openshell 颁发证书: 先下载 openshell,下载地址:https://slproweb.com/products/Win32OpenSSL.html openssl genrsa -out server.key 2048 ope 阅读全文
摘要:
React 环境搭建 前提需要先下载 nodejs :https://nodejs.org/en/download 暂时使用的是 nodejs 14.15.5 1、yarn 安装 npm install -g yarn yarn -v 查看版本 1.22.19 设置yarn 源:yarn confi 阅读全文
摘要:
element-ui DatePicker 的使用可参考:https://element.eleme.cn/#/zh-CN/component/date-picker 具体节假日需要每年12月份,跟据国家发部的通知自己行做调整 2023年节假日通知参考:http://www.gov.cn/zheng 阅读全文
摘要:
容器学习: 所有的WPF布局容器都派生自System.Windows.Controls.Panel。Panel继承自FrameworkElement。 在Panel中有一个比较重要的属性是UIElementCollection 类型的Children属性,UIElementCollection是一个 阅读全文
摘要:
1、Cookies 授权验证方式 Startup.cs 文件 // 注册Cookie认证服务 services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme).AddCookie(o => { o.Expire 阅读全文
摘要:
做为一个初学者,花了近一周时间去学习vue 的开发,经常采坑就是因为工具的版本导致。 只要基础环境搭建好了,其实开发起来还是比较快捷方便; 后面在慢慢分享个人实战项目中的一些学习经验。 第一步:当然是基础环境的安装备 这里主要包括使用的 vs code 软件和 nodejs 的安装 vscode 下 阅读全文
摘要:
在 Windows 上进行 web 开发,比较普遍的方案是使用 phpstudy 或者别的一些集成环境软件进行环境搭建,写好代码后将代码上传至版本管理工具 git/svn,再将代码同步到 Linux 服务器,这个过程当中开发者的开发环境(Windows)与代码最终执行的环境(Linux)不一致经常会 阅读全文
摘要:
本文为 CLI 方式执行数据结构同步及迁移,请确定当前电脑是否安装 .net core 运行环境 4.1. 打开 cmd ,执行:dotnet tool install --global dotnet-ef 如版本过低请输入:dotnet tool update -g dotnet-ef 4.2. 阅读全文