-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.sh
More file actions
executable file
·44 lines (37 loc) · 1.57 KB
/
Copy pathstart.sh
File metadata and controls
executable file
·44 lines (37 loc) · 1.57 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
#!/bin/bash
# Apollo Router Demo - Deployment Guide
#
# This project has been reorganized into two clear deployment paths.
# Please use one of the following instead:
#
# For Docker Compose (recommended for local development):
# cd docker-compose && ./start.sh
#
# For Kubernetes (k3d):
# cd kubernetes && ./start.sh
#
# See README.md for more details.
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m'
echo -e "${BLUE}╔═══════════════════════════════════════════════════════════╗${NC}"
echo -e "${BLUE}║ Apollo Router Demo - Deployment Paths ║${NC}"
echo -e "${BLUE}╚═══════════════════════════════════════════════════════════╝${NC}"
echo ""
echo -e "${YELLOW}This project now has two clear deployment paths:${NC}"
echo ""
echo -e "${GREEN}1. Docker Compose (Local Development)${NC}"
echo -e " Time: ~1-2 minutes | Complexity: Low"
echo -e " ${BLUE}cd docker-compose && ./start.sh${NC}"
echo ""
echo -e "${GREEN}2. Kubernetes k3d (Production-like)${NC}"
echo -e " Time: ~5-10 minutes | Complexity: Medium"
echo -e " ${BLUE}cd kubernetes && ./start.sh${NC}"
echo ""
echo -e "${YELLOW}Documentation:${NC}"
echo -e " - Compose: ${BLUE}docker-compose/README.md${NC}"
echo -e " - Kubernetes: ${BLUE}kubernetes/README-DEPLOYMENT.md${NC}"
echo -e " - Main: ${BLUE}README.md${NC}"
echo ""