Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions apps/agent/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,19 @@ AZURE_STORAGE_ACCOUNT=dev8storage
AZURE_STORAGE_KEY=your-storage-key
AZURE_DEFAULT_REGION=eastus

# ============================================================================
# Container Orchestration Provider
# ============================================================================
# Choose your Azure container orchestration provider:
# - "aci" (default) = Azure Container Instances (simpler, pay-per-second)
# - "aca" = Azure Container Apps (advanced, scale-to-zero, more features)
AZURE_DEPLOYMENT_MODE=aci

# Azure Container Apps (ACA) Configuration
# Required ONLY if AZURE_DEPLOYMENT_MODE=aca
# Get this from: az containerapp env show --name <env-name> --resource-group <rg> --query id -o tsv
AZURE_ACA_ENVIRONMENT_ID=

# Multi-Region Configuration (optional)
# Format: name:location:enabled:resourceGroup:storageAccount
# Example:
Expand Down
17 changes: 0 additions & 17 deletions apps/agent/.golangci.yaml

This file was deleted.

12 changes: 4 additions & 8 deletions apps/agent/.golangci.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
version: "2"

run:
timeout: 5m
tests: true

linters:
enable:
- gofmt
- goimports
- govet
- errcheck
- govet
- ineffassign
- staticcheck
- unused
- gosimple
- ineffassign
- typecheck
- gosec
- misspell
1 change: 1 addition & 0 deletions apps/agent/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ go 1.23.0
require (
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.2
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcontainers/armappcontainers/v2 v2.1.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerinstance/armcontainerinstance/v2 v2.0.0
github.com/Azure/azure-sdk-for-go/sdk/storage/azfile v1.2.0
github.com/gorilla/mux v1.8.1
Expand Down
2 changes: 2 additions & 0 deletions apps/agent/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0 h1:BMAjVKJM0U/CYF27gA0ZM
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.4.0/go.mod h1:1fXstnBMas5kzG+S3q8UoJcmyU6nUeunJcMDHcRYHhs=
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 h1:LqbJ/WzJUwBf8UiaSzgX7aMclParm9/5Vgp+TY51uBQ=
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2/go.mod h1:yInRyqWXAuaPrgI7p70+lDDgh3mlBohis29jGMISnmc=
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcontainers/armappcontainers/v2 v2.1.0 h1:zDZaE5l/F3aAAITZa6y2oTc7SdiYNJ0a5vFnE+sF5ro=
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcontainers/armappcontainers/v2 v2.1.0/go.mod h1:Wyp5SZpwTP9gXJE0J2JuhTj1s+uMJzA1HQY1P9v3l/I=
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerinstance/armcontainerinstance/v2 v2.0.0 h1:EnkWMIg7J1w3tYgTy6R/OUTo9lTz26aiZyGLTTSpVIs=
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerinstance/armcontainerinstance/v2 v2.0.0/go.mod h1:nqIVnU22IacbrniShrveGMTMHdVozaqfzVFVygR/g/k=
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0 h1:gggzg0SUMs6SQbEw+3LoSsYf9YMjkupeAnHMX8O9mmY=
Expand Down
Loading
Loading