-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphaseTwo.sh
executable file
·79 lines (62 loc) · 3.32 KB
/
phaseTwo.sh
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
#!/bin/sh
# Welcome
echo -e "\033[1;36m╔════════════════════════════════════════════════╗\033[0m"
echo -e "\033[1;36m║ Spinning up the Prelude Development Portal ║\033[0m"
echo -e "\033[1;36m╚════════════════════════════════════════════════╝\033[0m\n"
# rs = "Run Script" a simple function to apply permissions and run scripts
rs() {
chmod +x "$1" && "$1"
}
# Cleanup any existing healthcheck file
rs scripts/services/healthcheckCleanup.sh
# Database Setups
echo -e "\033[1;35m[2/12]\033[0m Setting up Song & Keycloak databases"
rs /scripts/services/songDbSetup.sh
rs /scripts/services/keycloakDbSetup.sh
# Minio Check
echo -e "\033[1;35m[3/12]\033[0m Checking Minio Object Storage"
rs /scripts/services/minioCheck.sh
# Score Setup
echo -e "\033[1;35m[4/12]\033[0m Checking on Score"
rs /scripts/services/scoreCheck.sh
# Song Setup
echo -e "\033[1;35m[5/12]\033[0m Checking on Song"
rs /scripts/services/songCheck.sh
# Wait a bit for Elasticsearch
echo -e "\033[1;36mElasticsearch:\033[0m Starting up (this may take a few minutes)"
until curl -s -u elastic:myelasticpassword -X GET "http://elasticsearch:9200/_cluster/health" > /dev/null; do
echo -e "\033[1;36mElasticsearch:\033[0m Not yet reachable, checking again in 30 seconds"
sleep 30
done
echo -e "\033[1;32mSuccess:\033[0m Elasticsearch is reachable"
# Elasticsearch (Comp) Setup
echo -e "\033[1;35m[6/12]\033[0m Setting up Composition Data in Elasticsearch"
rs /scripts/services/elasticsearchSetupCompositionData.sh
# Elasticsearch (Instrument) Setup
echo -e "\033[1;35m[7/12]\033[0m Setting Instrument Data in Elasticsearch"
rs /scripts/services/elasticsearchSetupInstrumentData.sh
# Update Conductor to Healthy Status, this signals search and exploration services (maestro, arranger, stage) to startup
echo "healthy" > /health/conductor_health
echo -e "\033[1;36mConductor:\033[0m Updating Container Status. Health check file created"
# Check Stage
echo -e "\033[1;35m[8/12]\033[0m Checking Stage"
rs /scripts/services/stageCheck.sh
# Check Arranger
echo -e "\033[1;35m[9/12]\033[0m Checking Arranger"
rs /scripts/services/arrangerCheck.sh
# Check Maestro
echo -e "\033[1;35m[10/12]\033[0m Checking Maestro"
rs /scripts/services/maestroCheck.sh
# Check Keycloak
echo -e "\033[1;35m[11/12]\033[0m Checking Keycloak"
rs /scripts/services/keycloakCheck.sh
# Remove Health Check File
echo -e "\033[1;35m[12/12]\033[0m Cleaning up health check file"
rm /health/conductor_health
# Success and Next Steps
echo -e "\033[1;36m╔═══════════════════════════════════════════════════════╗\033[0m"
echo -e "\033[1;36m║ Prelude Development Portal running on localhost ║\033[0m"
echo -e "\033[1;36m╚═══════════════════════════════════════════════════════╝\033[0m\n"
echo -e "\033[1m🌐 Development Portal should now be available at:\033[0m\n"
echo -e " \033[1;32mhttp://localhost:3000\033[0m"
echo -e " \033[0;90m(unless configured to use a different port)\033[0m\n"