Skip to content

Commit e878014

Browse files
Updated the deployment guide
1 parent 4dcbd3e commit e878014

1 file changed

Lines changed: 8 additions & 37 deletions

File tree

docs/DeploymentGuide.md

Lines changed: 8 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Ensure you have access to an [Azure subscription](https://azure.microsoft.com/fr
5353
- [Azure Queue Storage](https://learn.microsoft.com/en-us/azure/storage/queues/)
5454
- [Azure Cosmos DB](https://learn.microsoft.com/en-us/azure/cosmos-db/)
5555

56-
**Recommended Regions:** East US, East US 2, West US 3, Sweden Central
56+
**Recommended Regions:** Central US, Australia East, UK South, Japan East
5757

5858
🔍 **Check Availability:** Use [Azure Products by Region](https://azure.microsoft.com/en-us/explore/global-infrastructure/products-by-region/) to verify service availability.
5959

@@ -202,7 +202,7 @@ azd up
202202
```
203203

204204
**During deployment, you'll be prompted for:**
205-
1. **Environment name** (e.g., "conmig") - Must be 3-16 characters long, alphanumeric only
205+
1. **Environment name** (e.g., "dkmsa") - Must be 3-16 characters long, alphanumeric only
206206
2. **Azure subscription** selection
207207
3. **Azure AI Deployment Location** - Select a region with available Azure OpenAI Service quota for GPT-4.1-mini and text-embedding-3-large models
208208
4. **Primary location** - Select the region where your infrastructure resources will be deployed
@@ -367,7 +367,7 @@ If your deployment failed or encountered errors, here are the steps to recover:
367367
azd down
368368

369369
# Create new environment (3-16 chars, alphanumeric only)
370-
azd env new conmigretry
370+
azd env new dkmsaretry
371371

372372
# Deploy with different settings/region
373373
azd up
@@ -397,10 +397,10 @@ azd up
397397
**Example:**
398398
```shell
399399
# Create a new environment for production (valid: 3-16 chars)
400-
azd env new conmigprod
400+
azd env new dkmsaprod
401401

402402
# Switch to the new environment
403-
azd env select conmigprod
403+
azd env select dkmsaprod
404404

405405
# Deploy with fresh settings
406406
azd up
@@ -409,7 +409,7 @@ azd up
409409
> **Environment Name Requirements:**
410410
> - **Length:** 3-16 characters
411411
> - **Characters:** Alphanumeric only (letters and numbers)
412-
> - **Valid examples:** `conmig`, `test123`, `myappdev`, `prod2024`
412+
> - **Valid examples:** `dkmsa`, `test123`, `myappdev`, `prod2024`
413413
> - **Invalid examples:** `co` (too short), `my-very-long-environment-name` (too long), `test_env` (underscore not allowed), `myapp-dev` (hyphen not allowed)
414414
415415
</details>
@@ -436,7 +436,7 @@ azd env get-values
436436
437437
### Best Practices for Multiple Environments
438438
439-
- **Use descriptive names:** `conmigdev`, `conmigprod`, `conmigtest` (remember: 3-16 chars, alphanumeric only)
439+
- **Use descriptive names:** `dkmsadev`, `dkmsaprod`, `dkmsatest` (remember: 3-16 chars, alphanumeric only)
440440
- **Different regions:** Deploy to multiple regions for testing quota availability
441441
- **Separate configurations:** Each environment can have different parameter settings
442442
- **Clean up unused environments:** Use `azd down` to remove environments you no longer need
@@ -454,33 +454,4 @@ Now that your deployment is complete and tested, explore these resources to enha
454454
455455
- 🐛 **Issues:** Check [Troubleshooting Guide](./TroubleShootingSteps.md)
456456
- 💬 **Support:** Review [Support Guidelines](../SUPPORT.md)
457-
- 🔧 **Development:** See [Contributing Guide](../CONTRIBUTING.md)
458-
459-
---
460-
461-
## Advanced: Deploy Local Changes
462-
463-
If you've made local modifications to the code and want to deploy them to Azure, follow these steps to swap the configuration files:
464-
465-
> **Note:** To set up and run the application locally for development, see the [Local Development Setup Guide](./LocalDevelopmentSetup.md).
466-
467-
### Step 1: Rename Azure Configuration Files
468-
469-
**In the root directory:**
470-
1. Rename `azure.yaml` to `azure_custom2.yaml`
471-
2. Rename `azure_custom.yaml` to `azure.yaml`
472-
473-
### Step 2: Rename Infrastructure Files
474-
475-
**In the `infra` directory:**
476-
1. Rename `main.bicep` to `main_custom2.bicep`
477-
2. Rename `main_custom.bicep` to `main.bicep`
478-
479-
### Step 3: Deploy Changes
480-
481-
Run the deployment command:
482-
```shell
483-
azd up
484-
```
485-
486-
> **Note:** These custom files are configured to deploy your local code changes instead of pulling from the GitHub repository.
457+
- 🔧 **Development:** See [Contributing Guide](../CONTRIBUTING.md)

0 commit comments

Comments
 (0)