Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit f235ad4

Browse files
committed
docs: Add Todo README
1 parent dba2d92 commit f235ad4

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

samples/Todo/README.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
# Todo app using Nall.Aspire.Hosting.DependsOn
22

3-
## Migrations
3+
Startup dependencies:
4+
5+
```mermaid
6+
graph TD;
7+
db-server --> pgAdmin;
8+
db-server --> db;
9+
db --> migrator;
10+
db --> api;
11+
migrator --> api;
12+
```
13+
14+
## Run
15+
16+
```bash
17+
dotnet run --project AppHost
18+
```
19+
20+
### Migrations
421

522
```bash
623
dotnet ef migrations add "Initial_Migration" \

0 commit comments

Comments
 (0)