Skip to content

Commit 8e8fef5

Browse files
committed
Add Azure Developer CLI (azd) deployment guide
- Create docs/AZD_DEPLOYMENT.md with comprehensive azd up instructions - Update README.md to recommend azd as primary deployment method - Include configuration parameters, troubleshooting, and day-2 operations
1 parent bd71293 commit 8e8fef5

2 files changed

Lines changed: 426 additions & 4 deletions

File tree

content-gen/README.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,24 @@ The system extracts the following fields from free-text creative briefs:
103103
- Python 3.11+
104104
- Node.js 18+
105105

106-
### Quick Deployment
106+
### Quick Deployment (Recommended)
107+
108+
Using Azure Developer CLI (`azd`):
109+
110+
```bash
111+
# Clone the repository
112+
git clone <repository-url>
113+
cd content-gen
114+
115+
# Deploy everything with one command
116+
azd up
117+
```
118+
119+
See [docs/AZD_DEPLOYMENT.md](docs/AZD_DEPLOYMENT.md) for detailed `azd` deployment instructions.
120+
121+
### Manual Deployment
122+
123+
For more control over individual resources:
107124

108125
```bash
109126
# Clone the repository
@@ -114,7 +131,7 @@ cd content-gen
114131
./scripts/deploy.sh
115132
```
116133

117-
See [docs/DEPLOYMENT.md](docs/DEPLOYMENT.md) for detailed deployment instructions.
134+
See [docs/DEPLOYMENT.md](docs/DEPLOYMENT.md) for detailed manual deployment instructions.
118135

119136
### Local Development
120137

@@ -162,8 +179,9 @@ BRAND_SECONDARY_COLOR=#107C10
162179

163180
## Documentation
164181

165-
- [DALL-E 3 Image Generation Limitations](docs/IMAGE_GENERATION.md)
166-
- [Deployment Guide](docs/DEPLOYMENT.md)
182+
- [AZD Deployment Guide](docs/AZD_DEPLOYMENT.md) - Deploy with Azure Developer CLI
183+
- [Manual Deployment Guide](docs/DEPLOYMENT.md) - Step-by-step manual deployment
184+
- [Image Generation Configuration](docs/IMAGE_GENERATION.md) - DALL-E 3 and GPT-Image-1 setup
167185
- [API Reference](docs/API.md)
168186

169187
## License

0 commit comments

Comments
 (0)