Skip to content

Commit 5e13920

Browse files
committed
Update bin/setup for Kitsu name
1 parent 5635cc1 commit 5e13920

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed

bin/setup

+14-16
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ echo -e "${SPACES} ⠙⠋\n${COLOR_NONE}";
4646

4747

4848
# 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)"
5050
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"
5353
echo "not done that yet, please make sure you have a fork ready before continuing."
5454
echo -e "\n"
5555

@@ -59,11 +59,9 @@ HAS_DOCKER_ITSELF=`which docker`
5959
HAS_DOCKER_COMPOSE=`which docker-compose`
6060

6161
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."
6765
echo -e "\n"
6866

6967
echo "We found"
@@ -107,22 +105,22 @@ done
107105

108106
# Prompt the user to select which server repo he wants to use
109107
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
112110

113111
if [[ "$GITREPO_SERVER" == "" ]]; then
114-
GITREPO_SERVER="$GITHUB_USER/hummingbird-server"
112+
GITREPO_SERVER="$GITHUB_USER/kitsu-server"
115113
fi
116114
done
117115

118116

119117
# Prompt the user to select which client repo he wants to use
120118
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
123121

124122
if [[ "$GITREPO_CLIENT" == "" ]]; then
125-
GITREPO_CLIENT="$GITHUB_USER/hummingbird-client"
123+
GITREPO_CLIENT="$GITHUB_USER/kitsu-web"
126124
fi
127125
done
128126

@@ -197,8 +195,8 @@ fi
197195
echo -e "\n"
198196
echo -e "${COLOR_GREEN}Thanks for providing all of your information.${COLOR_NONE}"
199197
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"
202200
echo -e "- And then$DOES_AUTORUN start everything automatically and$DOES_SEEDNOW seed the database."
203201
echo -e "\n${COLOR_GREEN}Please remember:${COLOR_NONE} The setup could take a few minutes"
204202
echo "Just give it some time, even if it seems to be stuck for a minute."

0 commit comments

Comments
 (0)