fix(FN-002): remove forward references from docs to files not yet created

This commit is contained in:
Fusion
2026-05-14 01:47:03 +02:00
parent 1f1c95cdde
commit 2e8a558b71
3 changed files with 12 additions and 8 deletions
+7 -5
View File
@@ -55,9 +55,11 @@ pnpm dev # Runs frontend and backend in parallel
### With Docker Compose
```bash
docker compose up --build -d
```
> Docker Compose files will be added in Step 5. Once created, run:
>
> ```bash
> docker compose up --build -d
> ```
## Testing
@@ -127,8 +129,8 @@ pnpm build
│ ├── web/ # Vite React TypeScript frontend
│ └── api/ # FastAPI Python backend
├── docs/ # Documentation
├── deploy/ # Deployment skeleton files
├── docker-compose.yml
├── deploy/ # Deployment skeleton files (added in Step 5)
├── docker-compose.yml (added in Step 5)
└── package.json # Root monorepo scripts
```