Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
niltor committed Dec 14, 2023
1 parent a13d105 commit 4cae63d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions zh/ater.dry/创建并运行项目.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

### 数据库迁移

模板默认使用了PostgreSQL。如果你使用其他数据库提供程序,你可以在`Application`项目`AppServiceCollectionExtensions.cs`中找到注入数d据库服务的方法
模板默认使用了PostgreSQL。如果你使用其他数据库提供程序,你可以在`Application`项目`AppServiceCollectionExtensions.cs`中找到注入数据库服务的方法

请在`Http.API`项目下,使用`dotnet ef`命令生成迁移代码。或者直接运行`EFMigrations.ps1`脚本来执行,如:

Expand All @@ -76,7 +76,10 @@

由于8.0添加了对`.NET Aspire`的支持,现在你有两种方式运行程序。

1. 运行AppHost项目,这是使用 Aspire 提供的方式运行,它将打开`Dashboard`
1. 运行`AppHost`项目,这是使用 Aspire 提供的方式运行,它将打开`Dashboard`
2. 直接运行`Http.API`项目,这将在浏览器中打开接口的`Swagger UI`

你可以选择合适的方式运行程序。

> [!NOTE]
> 接口程序运行时,会自动提交迁移和创建默认用户,如果想更改此行为,请修改`InitDataTask.cs`中的代码。

0 comments on commit 4cae63d

Please sign in to comment.