@@ -46,10 +46,10 @@ echo -e "${SPACES} ⠙⠋\n${COLOR_NONE}";
46
46
47
47
48
48
# Output a totally not generic welcome message to the contributor
49
- echo " Great to have you on board!"
49
+ echo " 👋 $( tput bold ) Great to have you on board!$( tput sgr0 ) "
50
50
echo " Let's just run through some basic stuff to set up your local dev environment!"
51
- echo -e " \nThe automated setup assumes that you have already forked the hummingbird repos"
52
- echo " on your GitHub account or have access to the main repos themseves. If you have"
51
+ echo -e " \nThis automated setup assumes that you have already forked the Kitsu repos"
52
+ echo " onto your GitHub account or have access to the main repos themseves. If you have"
53
53
echo " not done that yet, please make sure you have a fork ready before continuing."
54
54
echo -e " \n"
55
55
@@ -59,11 +59,9 @@ HAS_DOCKER_ITSELF=`which docker`
59
59
HAS_DOCKER_COMPOSE=` which docker-compose`
60
60
61
61
if [[ " $HAS_DOCKER_ITSELF " == " " || " $HAS_DOCKER_COMPOSE " == " " ]]; then
62
- echo " You will need to have docker and docker-compose installed for running"
63
- echo " - If you are on Mac, check out Docker for Mac at https://docs.docker.com/docker-for-mac/"
64
- echo " - If you are on Windows, check out Docker for Windows at https://docs.docker.com/docker-for-windows/"
65
- echo " - Alternatively, check out Docker Toolbox at https://www.docker.com/products/docker-toolbox"
66
- echo " or manually install the docker and docker-compose package from your respective package manager."
62
+ echo " You will need to have docker and docker-compose installed. Go to"
63
+ echo " https://docs.docker.com/get-docker/ or manually install the docker"
64
+ echo " and docker-compose packages from your package manager."
67
65
echo -e " \n"
68
66
69
67
echo " We found"
@@ -107,22 +105,22 @@ done
107
105
108
106
# Prompt the user to select which server repo he wants to use
109
107
while [ " " == " $GITREPO_SERVER " ]; do
110
- INPUT_DEFAULT=" [$GITHUB_USER /hummingbird -server]"
111
- read -p " What's the path to your hummingbird -server repository fork$INPUT_DEFAULT ? " GITREPO_SERVER
108
+ INPUT_DEFAULT=" [$GITHUB_USER /kitsu -server]"
109
+ read -p " What's the path to your kitsu -server repository fork$INPUT_DEFAULT ? " GITREPO_SERVER
112
110
113
111
if [[ " $GITREPO_SERVER " == " " ]]; then
114
- GITREPO_SERVER=" $GITHUB_USER /hummingbird -server"
112
+ GITREPO_SERVER=" $GITHUB_USER /kitsu -server"
115
113
fi
116
114
done
117
115
118
116
119
117
# Prompt the user to select which client repo he wants to use
120
118
while [ " " == " $GITREPO_CLIENT " ]; do
121
- INPUT_DEFAULT=" [$GITHUB_USER /hummingbird-client ]"
122
- read -p " What's the path to your hummingbird-client repository fork$INPUT_DEFAULT ? " GITREPO_CLIENT
119
+ INPUT_DEFAULT=" [$GITHUB_USER /kitsu-web ]"
120
+ read -p " What's the path to your kitsu-web repository fork$INPUT_DEFAULT ? " GITREPO_CLIENT
123
121
124
122
if [[ " $GITREPO_CLIENT " == " " ]]; then
125
- GITREPO_CLIENT=" $GITHUB_USER /hummingbird-client "
123
+ GITREPO_CLIENT=" $GITHUB_USER /kitsu-web "
126
124
fi
127
125
done
128
126
197
195
echo -e " \n"
198
196
echo -e " ${COLOR_GREEN} Thanks for providing all of your information.${COLOR_NONE} "
199
197
echo " - We will use $GITREPO_METHOD to access GitHub in order to"
200
- echo " - Clone hummingbird -server from $REPO_SERVER "
201
- echo " - Clone hummingbird-client from $REPO_CLIENT "
198
+ echo " - Clone kitsu -server from $REPO_SERVER "
199
+ echo " - Clone kitsu-web from $REPO_CLIENT "
202
200
echo -e " - And then$DOES_AUTORUN start everything automatically and$DOES_SEEDNOW seed the database."
203
201
echo -e " \n${COLOR_GREEN} Please remember:${COLOR_NONE} The setup could take a few minutes"
204
202
echo " Just give it some time, even if it seems to be stuck for a minute."
0 commit comments