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
+3 -3
View File
@@ -10,6 +10,6 @@ This directory contains architecture, development, and deployment documentation
## Quick Links
- [Root README](../README.md)
- [Deploy Skeleton](../deploy/README.md)
- [Project Brief](project-brief.md) — Original product brief and confirmed stack
- Root README — to be added in Step 6
- Deploy Skeleton — to be added in Step 5
- [Project Brief](project-brief.md) — Original product brief and confirmed stack *(FN-001)*
+2
View File
@@ -16,6 +16,8 @@ This document covers the scaffold-level deployment assumptions created in FN-002
## Deployment Files
The following files will be added as part of the Docker Compose skeleton (Step 5):
| File | Purpose |
|------|---------|
| `docker-compose.yml` | Local development (API, web, Postgres) |
+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
```