Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "MicroHack-GitHub",
"image": "mcr.microsoft.com/devcontainers/python:3.12-bookworm",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"postCreateCommand": "az version && (curl -LsSf https://astral.sh/uv/install.sh | sh -s -- --yes) && /bin/bash ./.devcontainer/setup_ports.sh",
"postCreateCommand": "az version && (curl -LsSf https://astral.sh/uv/install.sh | sh) && uvx --version && /bin/bash ./.devcontainer/setup_ports.sh",
"forwardPorts": [
3000,
8010,
Expand Down
4 changes: 4 additions & 0 deletions .vscode/mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
"args": [
"mcp-server-fetch"
]
},
"GitHub-MCP": {
"url": "https://api.githubcopilot.com/mcp",
"type": "http"
}
},
"inputs": []
Expand Down
2 changes: 1 addition & 1 deletion backend/accessory-service/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COSMOS_CONTAINER_NAME=accessories
# COSMOS_EMULATOR_DISABLE_SSL_VERIFY=1

# Application Configuration
APP_NAME=Accessory Service
APP_NAME="Accessory Service"
APP_VERSION=1.0.0
DEBUG=True
LOG_LEVEL=INFO
Expand Down
2 changes: 1 addition & 1 deletion backend/activity-service/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ COSMOS_CONTAINER_NAME=activities


# Application Configuration
APP_NAME=Activity Service
APP_NAME="Activity Service"
APP_VERSION=1.0.0
DEBUG=True
LOG_LEVEL=INFO
Expand Down
2 changes: 1 addition & 1 deletion backend/pet-service/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COSMOS_CONTAINER_NAME=pets
# For HTTPS with self-signed cert, set:
# COSMOS_EMULATOR_DISABLE_SSL_VERIFY=true

APP_NAME=Pets Service
APP_NAME="Pets Service"
APP_VERSION=1.0.0
DEBUG=True
LOG_LEVEL=INFO
3 changes: 0 additions & 3 deletions challenges/challenge-08/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,6 @@ Deploy the PetPal microservices to Azure using Infrastructure as Code (IaC). Thi
Example of provisioned services in Azure Portal:
![Azure Portal Container Apps](../../solutions/challenge-08/docs/infra-provisioned.jpg)

3. **Test the Application**:
- Access frontend URL from deployment outputs
- Check Container Apps logs for errors

## Success Criteria

Expand Down
2 changes: 1 addition & 1 deletion solutions/challenge-08/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ azd version

# Login to Azure
az login
azd auth login
azd auth login --use-device-code

# Set subscription (if you have multiple)
az account set --subscription <subscription-id>
Expand Down