Skip to content

Commit 207c3a3

Browse files
authored
Merge pull request #22 from Azure-Samples/feature/container-app-deployment
🚀 Major Architecture Migration: Azure Functions to Container Apps with Enhanced Features
2 parents 5c7eca9 + 4ff13a8 commit 207c3a3

82 files changed

Lines changed: 8587 additions & 2625 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.template

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Environment variables for ARGUS Container App deployment
2+
# Copy this file to .env and fill in your values
3+
4+
# Azure Subscription and Resource Group
5+
AZURE_SUBSCRIPTION_ID=your-subscription-id-here
6+
AZURE_RESOURCE_GROUP_NAME=rg-argus-containerapp
7+
AZURE_LOCATION=eastus2
8+
9+
# Azure Environment (for azd)
10+
AZURE_ENV_NAME=argus-dev
11+
AZURE_PRINCIPAL_ID=your-user-principal-id
12+
13+
# Azure Container App Configuration
14+
AZURE_CONTAINER_APP_NAME=ca-argus
15+
16+
# Azure OpenAI Configuration
17+
AZURE_OPENAI_ENDPOINT=https://your-openai-account.openai.azure.com/
18+
AZURE_OPENAI_KEY=your-openai-api-key
19+
AZURE_OPENAI_MODEL_DEPLOYMENT_NAME=gpt-4
20+
21+
# To get your Principal ID, run:
22+
# az ad signed-in-user show --query id --output tsv
23+
24+
# To get your Subscription ID, run:
25+
# az account show --query id --output tsv

.gitignore

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,19 @@ local.settings.json
135135
__blobstorage__
136136
__queuestorage__
137137
__azurite_db*__.json
138-
.python_packages
138+
.python_packages
139+
# Azure deployment artifacts
140+
.azure/
141+
.env
142+
.env.local
143+
144+
# Test outputs
145+
*.log
146+
test-output/
147+
148+
# IDE
149+
.vscode/
150+
.idea/
151+
152+
# Mac
153+
.DS_Store

CHANGELOG.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)