generated from wunderio/next-drupal-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·86 lines (75 loc) · 2.09 KB
/
setup.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
80
81
82
83
84
85
86
#!/bin/bash
# List of commands to run:
commands=(
"lando rebuild -y"
"lando composer install"
"lando generate-oauth-keys"
"lando drush si minimal -y"
"lando install-recipe wunder_next_setup"
"lando drush wunder_next:setup-user-and-consumer"
"lando drush eshd -y"
"lando drush eshs"
"lando npm i"
"lando npm run build"
"(lando npm run start&)"
"lando drush en wunder_democontent -y"
"lando drush mim --group=demo_content --execute-dependencies"
"lando npm-stop || true"
)
last_successful_command=0
status_file=".last_successful_command"
# Parse command-line arguments
clean_run=false
# Function to display the script's usage
show_help() {
echo "Usage: $0 [-c] [-h]"
echo " -c Clean run (ignore status file if it exists)"
echo " -h Display this help message"
exit 1
}
while getopts "ch" opt; do
case $opt in
c)
clean_run=true
;;
h)
show_help
;;
\?)
echo "Invalid option: -$OPTARG" >&2
exit 1
;;
esac
done
# Run the commands
run_commands() {
for ((i = $last_successful_command; i < ${#commands[@]}; ++i)); do
command="${commands[$i]}"
echo "➡️ Running command: $command"
last_successful_command=$i
echo $last_successful_command > $status_file
if eval "$command"; then
echo "✔ Command successful."
else
echo "❌ Command $command failed."
exit 1
fi
done
# All commands were successful. Remove the status file, show messages to the user, and start the frontend site.
rm -f "$status_file"
echo '🚀 All Done!'
echo '↪️ Use this link to log into the backend as user 1:'
lando drush uli
echo '🏎️ Starting the frontend site in production mode...'
echo '⚠️ Note: the site will be available at https://frontend.lndo.site/ in addition to the usual localhost:3000'
lando npm run start
}
# Check if the clean run option is set
if [ "$clean_run" = true ]; then
rm -f "$status_file"
fi
# Check if there's a status file indicating the last successful command
if [ -f "$status_file" ]; then
read -r last_successful_command < "$status_file"
fi
run_commands