We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3257522 commit 84a6a22Copy full SHA for 84a6a22
scripts/start-all.sh
@@ -1,5 +1,10 @@
1
+# Print message on console.
2
+echo "[info] Starting server and client..."
3
+
4
+# OS variable
5
CHECK_OS="`uname -s`"
6
7
+# Check OS and then RUN the services
8
if [[ ${CHECK_OS} = "Darwin"* ]]; then
9
npm run build --prefix ./server/app && docker-compose -f ./server/docker-compose.yml --env-file ./config/.server.env up -d && npm run start:client
10
elif [[ "$CHECK_OS" = "Linux"* ]]; then
@@ -11,3 +16,6 @@ elif [[ ${CHECK_OS} = "MINGW64"* ]]; then
11
16
elif [[ ${CHECK_OS} = "CYGWIN"* ]]; then
12
17
npm run start:windows
13
18
fi
19
20
21
+echo "[info] Now enjoy the your dev-portfolio web!!"
0 commit comments