-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·600 lines (499 loc) · 22.7 KB
/
setup.sh
File metadata and controls
executable file
·600 lines (499 loc) · 22.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
#!/bin/bash
# ==============================================================================
# UnitOne AgentGateway - Interactive Setup
# ==============================================================================
#
# This script guides you through setting up UnitOne AgentGateway on Azure.
# It will prompt for required configuration and generate terraform.tfvars.
#
# Usage:
# ./setup.sh
#
# ==============================================================================
set -e
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
CYAN='\033[0;36m'
BOLD='\033[1m'
NC='\033[0m'
print_header() {
echo ""
echo -e "${BLUE}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
echo -e "${BOLD}${CYAN} $1${NC}"
echo -e "${BLUE}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
echo ""
}
print_step() { echo -e "${CYAN}▶${NC} $1"; }
print_success() { echo -e "${GREEN}✓${NC} $1"; }
print_warning() { echo -e "${YELLOW}⚠${NC} $1"; }
print_error() { echo -e "${RED}✗${NC} $1"; }
print_info() { echo -e "${BLUE}ℹ${NC} $1"; }
prompt() {
local var_name=$1
local prompt_text=$2
local default_value=$3
local is_secret=${4:-false}
if [ -n "$default_value" ]; then
prompt_text="$prompt_text [$default_value]"
fi
if [ "$is_secret" = true ]; then
read -sp "$prompt_text: " value
echo ""
else
read -p "$prompt_text: " value
fi
if [ -z "$value" ] && [ -n "$default_value" ]; then
value="$default_value"
fi
eval "$var_name='$value'"
}
prompt_yes_no() {
local prompt_text=$1
local default=${2:-n}
if [ "$default" = "y" ]; then
read -p "$prompt_text [Y/n]: " response
response=${response:-y}
else
read -p "$prompt_text [y/N]: " response
response=${response:-n}
fi
[[ "$response" =~ ^[Yy] ]]
}
# ==============================================================================
# Main Setup
# ==============================================================================
echo ""
echo -e "${BOLD}${BLUE}╔═══════════════════════════════════════════════════════════╗${NC}"
echo -e "${BOLD}${BLUE}║${NC} ${BOLD}${CYAN}UnitOne AgentGateway - Interactive Setup${NC} ${BOLD}${BLUE}║${NC}"
echo -e "${BOLD}${BLUE}╚═══════════════════════════════════════════════════════════╝${NC}"
echo ""
print_info "This wizard will help you configure UnitOne AgentGateway for Azure."
print_info "Your settings will be saved to terraform/terraform.tfvars"
echo ""
# Check prerequisites
print_header "Checking Prerequisites"
if ! command -v az &> /dev/null; then
print_error "Azure CLI not found. Install from: https://docs.microsoft.com/en-us/cli/azure/install-azure-cli"
exit 1
fi
print_success "Azure CLI installed"
if ! az account show &> /dev/null; then
print_warning "Not logged in to Azure. Running 'az login'..."
az login
fi
SUBSCRIPTION=$(az account show --query name -o tsv)
print_success "Logged in to Azure: $SUBSCRIPTION"
if ! command -v terraform &> /dev/null; then
print_error "Terraform not found. Install from: https://www.terraform.io/downloads"
exit 1
fi
print_success "Terraform installed"
# ==============================================================================
# Basic Configuration
# ==============================================================================
print_header "Basic Configuration"
prompt ENVIRONMENT "Environment (dev/staging/prod)" "dev"
prompt LOCATION "Azure region" "eastus2"
prompt BASE_NAME "Resource name prefix (lowercase, no spaces)" "unitone-agw"
prompt RESOURCE_GROUP "Resource group name" "agentgateway-${ENVIRONMENT}-rg"
echo ""
print_info "Optional: Use a deployment stamp for multiple deployments in the same environment"
print_info " Examples: '01', 'primary', 'test' → creates resources like ${BASE_NAME}-${ENVIRONMENT}-01"
prompt DEPLOYMENT_STAMP "Deployment stamp (leave empty for single deployment)" ""
echo ""
if [ -n "$DEPLOYMENT_STAMP" ]; then
print_info "Resources will be created in: $RESOURCE_GROUP ($LOCATION) with stamp '$DEPLOYMENT_STAMP'"
else
print_info "Resources will be created in: $RESOURCE_GROUP ($LOCATION)"
fi
# Check if resource group exists
if az group show --name "$RESOURCE_GROUP" &> /dev/null; then
print_success "Resource group exists: $RESOURCE_GROUP"
else
if prompt_yes_no "Resource group doesn't exist. Create it?"; then
az group create --name "$RESOURCE_GROUP" --location "$LOCATION" > /dev/null
print_success "Created resource group: $RESOURCE_GROUP"
else
print_warning "You'll need to create the resource group before running terraform"
fi
fi
# ==============================================================================
# Authentication Configuration
# ==============================================================================
print_header "Authentication Configuration"
print_info "UnitOne AgentGateway supports OAuth authentication via Azure Easy Auth."
print_info "You can configure Microsoft (Azure AD), Google, and/or GitHub."
echo ""
if prompt_yes_no "Enable authentication (Easy Auth)?"; then
CONFIGURE_AUTH=true
ALLOW_ANONYMOUS=false
echo ""
print_info "For each OAuth provider, you'll need:"
print_info " - Client ID (from OAuth app registration)"
print_info " - Client Secret (from OAuth app registration)"
echo ""
# Microsoft (Azure AD)
if prompt_yes_no "Configure Microsoft (Azure AD) authentication?" "y"; then
echo ""
print_info "Create an app registration at:"
print_info " ${CYAN}https://portal.azure.com → Azure Active Directory → App registrations → New${NC}"
echo ""
print_info "Settings to use:"
print_info " Name: UnitOne AgentGateway (or your choice)"
print_info " Supported account types: Choose based on your needs"
print_info " Redirect URI: Web → https://<app-name>.azurecontainerapps.io/.auth/login/aad/callback"
print_info " (You'll get the exact URL after deployment - you can update it then)"
echo ""
print_info "After creating, go to 'Certificates & secrets' → 'New client secret'"
echo ""
prompt MICROSOFT_CLIENT_ID "Microsoft Client ID (Application ID)"
prompt MICROSOFT_CLIENT_SECRET "Microsoft Client Secret" "" true
fi
# Google
echo ""
if prompt_yes_no "Configure Google authentication?"; then
echo ""
print_info "Create OAuth credentials at:"
print_info " ${CYAN}https://console.cloud.google.com → APIs & Services → Credentials${NC}"
echo ""
print_info "Settings to use:"
print_info " Application type: Web application"
print_info " Authorized redirect URIs: https://<app-name>.azurecontainerapps.io/.auth/login/google/callback"
print_info " (You'll get the exact URL after deployment)"
echo ""
prompt GOOGLE_CLIENT_ID "Google Client ID"
prompt GOOGLE_CLIENT_SECRET "Google Client Secret" "" true
fi
# GitHub
echo ""
if prompt_yes_no "Configure GitHub authentication?"; then
echo ""
print_info "Create OAuth app at:"
print_info " ${CYAN}https://github.com/settings/developers → OAuth Apps → New${NC}"
echo ""
print_info "Settings to use:"
print_info " Application name: UnitOne AgentGateway"
print_info " Homepage URL: https://<app-name>.azurecontainerapps.io"
print_info " Authorization callback URL: https://<app-name>.azurecontainerapps.io/.auth/login/github/callback"
print_info " (You'll get the exact URL after deployment)"
echo ""
prompt GITHUB_CLIENT_ID "GitHub Client ID"
prompt GITHUB_CLIENT_SECRET "GitHub Client Secret" "" true
fi
else
CONFIGURE_AUTH=false
ALLOW_ANONYMOUS=true
print_warning "Authentication disabled - anyone can access the gateway"
fi
# ==============================================================================
# Client Certificate (mTLS) Configuration
# ==============================================================================
print_header "Client Certificate Configuration (mTLS)"
print_info "Client certificates provide mutual TLS authentication for service-to-service communication."
echo ""
echo " ignore - Don't request client certificates (default)"
echo " accept - Accept client certificates if provided, but don't require them"
echo " require - Require valid client certificates for all requests"
echo ""
if prompt_yes_no "Configure client certificate authentication (mTLS)?"; then
echo ""
PS3="Select client certificate mode: "
select mode in "ignore" "accept" "require"; do
case $mode in
ignore|accept|require)
CLIENT_CERT_MODE=$mode
print_success "Client certificate mode: $CLIENT_CERT_MODE"
break
;;
*)
print_error "Invalid selection"
;;
esac
done
else
CLIENT_CERT_MODE="ignore"
fi
# ==============================================================================
# CI/CD Configuration
# ==============================================================================
print_header "CI/CD Configuration (Optional)"
print_info "You can enable automatic builds when you push to GitHub."
print_info "This requires a GitHub Personal Access Token with repo access."
echo ""
if prompt_yes_no "Enable CI/CD automation (ACR Tasks)?"; then
prompt GITHUB_REPO_URL "GitHub repository URL" "https://github.com/YOUR_ORG/unitone-agentgateway.git"
echo ""
print_info "Create a GitHub PAT at: https://github.com/settings/tokens"
print_info "Required scopes: repo (full control)"
prompt GITHUB_PAT "GitHub Personal Access Token" "" true
else
GITHUB_REPO_URL=""
GITHUB_PAT=""
fi
# ==============================================================================
# Generate terraform.tfvars
# ==============================================================================
print_header "Generating Configuration"
TFVARS_FILE="terraform/terraform.tfvars"
cat > "$TFVARS_FILE" << EOF
# UnitOne AgentGateway - Terraform Configuration
# Generated by setup.sh on $(date)
#
# IMPORTANT: This file contains secrets. Do not commit to git!
# Basic Configuration
environment = "$ENVIRONMENT"
location = "$LOCATION"
base_name = "$BASE_NAME"
resource_group_name = "$RESOURCE_GROUP"
deployment_stamp = "$DEPLOYMENT_STAMP"
# Deployment Settings
use_placeholder_image = true # Use placeholder until real image is built
enable_sticky_sessions = true # Required for multi-replica MCP session affinity
# Authentication
configure_auth = $CONFIGURE_AUTH
allow_anonymous_access = $ALLOW_ANONYMOUS
EOF
if [ -n "$MICROSOFT_CLIENT_ID" ]; then
cat >> "$TFVARS_FILE" << EOF
# Microsoft (Azure AD) OAuth
microsoft_client_id = "$MICROSOFT_CLIENT_ID"
microsoft_client_secret = "$MICROSOFT_CLIENT_SECRET"
EOF
fi
if [ -n "$GOOGLE_CLIENT_ID" ]; then
cat >> "$TFVARS_FILE" << EOF
# Google OAuth
google_client_id = "$GOOGLE_CLIENT_ID"
google_client_secret = "$GOOGLE_CLIENT_SECRET"
EOF
fi
if [ -n "$GITHUB_CLIENT_ID" ]; then
cat >> "$TFVARS_FILE" << EOF
# GitHub OAuth
github_client_id = "$GITHUB_CLIENT_ID"
github_client_secret = "$GITHUB_CLIENT_SECRET"
EOF
fi
if [ -n "$GITHUB_PAT" ]; then
cat >> "$TFVARS_FILE" << EOF
# CI/CD Automation
github_repo_url = "$GITHUB_REPO_URL"
github_pat = "$GITHUB_PAT"
EOF
fi
if [ "$CLIENT_CERT_MODE" != "ignore" ]; then
cat >> "$TFVARS_FILE" << EOF
# Client Certificate (mTLS)
client_certificate_mode = "$CLIENT_CERT_MODE"
EOF
fi
print_success "Configuration saved to: $TFVARS_FILE"
# Ensure tfvars is gitignored
if ! grep -q "terraform.tfvars" .gitignore 2>/dev/null; then
echo "terraform/terraform.tfvars" >> .gitignore
print_success "Added terraform.tfvars to .gitignore"
fi
# ==============================================================================
# Deploy Infrastructure
# ==============================================================================
print_header "Deploy Infrastructure"
echo -e "${GREEN}Configuration saved to: $TFVARS_FILE${NC}"
echo ""
if prompt_yes_no "Deploy infrastructure now with Terraform?" "y"; then
print_step "Initializing Terraform..."
cd terraform
terraform init -upgrade
# ==============================================================================
# Import Pre-existing Resources (if any)
# ==============================================================================
# Handles two scenarios:
# 1. Fresh deployment: Resources don't exist, Terraform creates them
# 2. Pre-created resources: Admin created them, we import into Terraform state
# Build expected resource names
STAMP_SUFFIX="${DEPLOYMENT_STAMP:+$DEPLOYMENT_STAMP}"
ACR_NAME_CHECK=$(echo "${BASE_NAME}${ENVIRONMENT}${STAMP_SUFFIX}acr" | tr -d '-')
LOG_ANALYTICS_NAME="${BASE_NAME}-${ENVIRONMENT}${STAMP_SUFFIX:+-$STAMP_SUFFIX}-logs"
KEY_VAULT_NAME="${BASE_NAME}-${ENVIRONMENT}${STAMP_SUFFIX:+-$STAMP_SUFFIX}-kv"
SUBSCRIPTION_ID=$(az account show --query id -o tsv)
# Helper function to import resource if it exists but isn't in state
import_if_exists() {
local resource_type=$1
local tf_resource=$2
local azure_id=$3
local check_cmd=$4
if eval "$check_cmd" &>/dev/null; then
if terraform state show "$tf_resource" &>/dev/null; then
print_success "$resource_type: already managed by Terraform"
else
print_step "$resource_type: importing pre-existing resource..."
if terraform import "$tf_resource" "$azure_id" &>/dev/null; then
print_success "$resource_type: imported successfully"
else
print_warning "$resource_type: import failed, Terraform will attempt to create"
fi
fi
else
print_info "$resource_type: will be created by Terraform"
fi
}
echo ""
print_step "Checking resource state..."
import_if_exists "Container Registry" \
"azurerm_container_registry.acr" \
"/subscriptions/${SUBSCRIPTION_ID}/resourceGroups/${RESOURCE_GROUP}/providers/Microsoft.ContainerRegistry/registries/${ACR_NAME_CHECK}" \
"az acr show --name $ACR_NAME_CHECK --resource-group $RESOURCE_GROUP"
import_if_exists "Log Analytics" \
"azurerm_log_analytics_workspace.logs" \
"/subscriptions/${SUBSCRIPTION_ID}/resourceGroups/${RESOURCE_GROUP}/providers/Microsoft.OperationalInsights/workspaces/${LOG_ANALYTICS_NAME}" \
"az monitor log-analytics workspace show --workspace-name $LOG_ANALYTICS_NAME --resource-group $RESOURCE_GROUP"
import_if_exists "Key Vault" \
"azurerm_key_vault.kv" \
"/subscriptions/${SUBSCRIPTION_ID}/resourceGroups/${RESOURCE_GROUP}/providers/Microsoft.KeyVault/vaults/${KEY_VAULT_NAME}" \
"az keyvault show --name $KEY_VAULT_NAME --resource-group $RESOURCE_GROUP"
echo ""
print_step "Planning deployment..."
terraform plan -out=tfplan
echo ""
if prompt_yes_no "Apply this plan?" "y"; then
print_step "Applying Terraform..."
terraform apply tfplan
print_success "Infrastructure deployed!"
# Get outputs
ACR_NAME=$(terraform output -raw acr_name 2>/dev/null || echo "")
APP_NAME=$(terraform output -raw container_app_name 2>/dev/null || echo "")
APP_URL=$(terraform output -raw container_app_url 2>/dev/null || echo "")
UI_URL=$(terraform output -raw ui_url 2>/dev/null || echo "")
cd ..
# ==============================================================================
# Build Container Image
# ==============================================================================
print_header "Build Container Image"
if [ -n "$ACR_NAME" ]; then
echo "ACR Name: $ACR_NAME"
echo ""
if prompt_yes_no "Build and push container image now?" "y"; then
print_step "Building image with ACR Cloud Build..."
print_info "This builds in Azure (no local Docker needed)"
echo ""
az acr build \
--registry "$ACR_NAME" \
--image unitone-agentgateway:latest \
--image "unitone-agentgateway:$(git rev-parse --short HEAD 2>/dev/null || echo 'manual')" \
--file Dockerfile.acr \
--platform linux/amd64 \
.
print_success "Image built and pushed to ACR!"
# Update container app with new image
if [ -n "$APP_NAME" ] && [ -n "$RESOURCE_GROUP" ]; then
print_step "Updating Container App with new image..."
az containerapp update \
--name "$APP_NAME" \
--resource-group "$RESOURCE_GROUP" \
--image "${ACR_NAME}.azurecr.io/unitone-agentgateway:latest" \
--output none
print_success "Container App updated!"
fi
fi
fi
# ==============================================================================
# Test Servers (Optional)
# ==============================================================================
print_header "Test Servers (Optional)"
print_info "Test servers provide MCP endpoints for testing security guards:"
print_info " - PII Test Server: Returns data with PII for testing detection"
print_info " - Tool Poisoning Test: Returns malicious tool descriptions"
print_info " - Rug Pull Test: Changes tool behavior after initial calls"
echo ""
if prompt_yes_no "Deploy test servers?"; then
CONTAINER_ENV_NAME=$(terraform output -raw container_app_env_name 2>/dev/null || echo "")
cd ..
if [ -n "$ACR_NAME" ] && [ -n "$CONTAINER_ENV_NAME" ]; then
print_step "Deploying test servers..."
bash ./scripts/deploy-test-servers.sh \
--resource-group "$RESOURCE_GROUP" \
--acr-name "$ACR_NAME" \
--environment "$CONTAINER_ENV_NAME" \
--update-gateway
# Rebuild gateway with updated config
if prompt_yes_no "Rebuild gateway with test server configuration?" "y"; then
print_step "Rebuilding gateway image with test servers..."
az acr build \
--registry "$ACR_NAME" \
--image unitone-agentgateway:latest \
--image "unitone-agentgateway:$(git rev-parse --short HEAD 2>/dev/null || echo 'manual')" \
--file Dockerfile.acr \
--platform linux/amd64 \
.
print_step "Updating gateway with new image..."
az containerapp update \
--name "$APP_NAME" \
--resource-group "$RESOURCE_GROUP" \
--image "${ACR_NAME}.azurecr.io/unitone-agentgateway:latest" \
--output none
print_success "Gateway updated with test server configuration!"
fi
else
print_warning "Could not get ACR or environment name. Deploy test servers manually:"
echo -e " ${CYAN}./scripts/deploy-test-servers.sh --help${NC}"
fi
cd terraform
else
print_info "Skipping test servers. Deploy later with:"
echo -e " ${CYAN}./scripts/deploy-test-servers.sh -g $RESOURCE_GROUP -a $ACR_NAME -e <env-name> --update-gateway${NC}"
fi
# ==============================================================================
# Deployment Complete
# ==============================================================================
print_header "Deployment Complete!"
echo -e "${GREEN}Your AgentGateway is deployed!${NC}"
echo ""
echo -e "${BOLD}Access URLs:${NC}"
if [ -n "$UI_URL" ]; then
echo -e " UI Dashboard: ${CYAN}$UI_URL${NC}"
fi
if [ -n "$APP_URL" ]; then
echo -e " Gateway URL: ${CYAN}$APP_URL${NC}"
echo -e " MCP Endpoint: ${CYAN}${APP_URL}/mcp${NC}"
fi
echo ""
if [ "$CONFIGURE_AUTH" = true ]; then
echo -e "${YELLOW}⚠ Update your OAuth apps with callback URLs:${NC}"
echo ""
cd terraform
echo " Microsoft: $(terraform output -raw microsoft_callback_url 2>/dev/null || echo 'N/A')"
echo " Google: $(terraform output -raw google_callback_url 2>/dev/null || echo 'N/A')"
echo " GitHub: $(terraform output -raw github_callback_url 2>/dev/null || echo 'N/A')"
cd ..
echo ""
fi
echo -e "${BOLD}Useful commands:${NC}"
echo -e " View logs: ${CYAN}az containerapp logs show --name $APP_NAME --resource-group $RESOURCE_GROUP --follow${NC}"
echo -e " Redeploy: ${CYAN}az acr build --registry $ACR_NAME --image unitone-agentgateway:latest -f Dockerfile.acr .${NC}"
echo ""
else
print_info "Terraform plan saved. Run 'cd terraform && terraform apply tfplan' when ready."
cd ..
fi
else
# Manual deployment instructions
print_header "Manual Deployment Instructions"
echo -e "${BOLD}1. Review configuration:${NC}"
echo -e " ${CYAN}cat terraform/terraform.tfvars${NC}"
echo ""
echo -e "${BOLD}2. Deploy infrastructure:${NC}"
echo -e " ${CYAN}cd terraform && terraform init && terraform apply${NC}"
echo ""
echo -e "${BOLD}3. Build container image:${NC}"
echo -e " ${CYAN}ACR_NAME=\$(cd terraform && terraform output -raw acr_name)${NC}"
echo -e " ${CYAN}az acr build --registry \$ACR_NAME --image unitone-agentgateway:latest -f Dockerfile.acr .${NC}"
echo ""
echo -e "${BOLD}4. Access gateway:${NC}"
echo -e " ${CYAN}cd terraform && terraform output ui_url${NC}"
echo ""
fi
echo -e "${BOLD}Run E2E tests locally:${NC}"
echo -e " ${CYAN}./deploy.sh${NC}"
echo ""