09 2024 档案

摘要:第一步:创建项目结构# 创建解决方案 dotnet new sln -n Fx cd Fx # 创建 Web API 层 dotnet new webapi -n Fx.WebApi # 创建 Application 层 dotnet new classlib -n Fx.Application # 阅读全文
posted @ 2024-09-28 16:49 eqy 阅读(129) 评论(0) 推荐(0)
摘要:前提条件 - 已安装 [Docker Desktop] 创建 Docker 卷 首先,创建一个名为 `pgdata` 的 Docker 卷,以便用于 PostgreSQL 数据存储。 docker volume create pgdata 运行 PostgreSQL 容器 使用以下命令启动 Post 阅读全文
posted @ 2024-09-26 19:30 eqy 阅读(262) 评论(0) 推荐(0)