Skip to content

Commit 5002425

Browse files
Minor formatting
1 parent 07cbb89 commit 5002425

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

.devcontainer/post-start-light.sh

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,25 @@
55
# ------------------------------
66

77
echo ""
8-
echo "🚀 APIM Samples environment starting..."
9-
echo ""
8+
echo -e "🚀 APIM Samples environment starting...\n"
109

1110
# ------------------------------
1211
# MINIMAL SETUP TASKS
1312
# ------------------------------
1413

15-
echo "🔧 Running minimal post-start configuration..."
16-
17-
14+
echo -e "Running minimal post-start configuration...\n"
1815

1916
# Configure Azure CLI (quick)
20-
echo "☁️ Configuring Azure CLI..."
17+
echo -e "1) Configuring Azure CLI...\n"
2118
az config set core.login_experience_v2=off 2>/dev/null || true
2219

2320
# Install Azure CLI extensions if not already present
24-
echo "📥 Checking Azure CLI extensions..."
21+
echo -e "2) Checking Azure CLI extensions...\n"
2522
az extension add --name containerapp --only-show-errors 2>/dev/null || true
2623
az extension add --name front-door --only-show-errors 2>/dev/null || true
2724

28-
29-
30-
31-
3225
# Create workspace settings if they don't exist
33-
echo "🛠️ Ensuring workspace configuration..."
26+
echo "3) Ensuring workspace configuration..."
3427
mkdir -p .vscode
3528

3629
if [ ! -f ".vscode/settings.json" ]; then
@@ -60,18 +53,18 @@ fi
6053
# ------------------------------
6154

6255
echo ""
63-
echo " Verifying environment..."
56+
echo -e "4) Verifying environment...\n"
6457
echo "Python version: $(python --version)"
6558
echo "Virtual environment: $VIRTUAL_ENV"
6659
echo "Python location: $(which python)"
6760
echo "Packages available: $(pip list | wc -l) packages"
6861

6962
echo ""
70-
echo " Quick package verification..."
63+
echo -e "5) Quick package verification...\n"
7164
python -c "import requests, jwt, pandas, matplotlib; print('✅ Core packages ready')" || echo "⚠️ Some packages may need attention"
7265

7366
echo ""
74-
echo " Azure CLI version: $(az --version | head -1)"
67+
echo -e "6) Azure CLI version: $(az --version | head -1)\n"
7568

7669
echo ""
7770
echo "🎉 Environment ready for development!"

0 commit comments

Comments
 (0)