52 lines
1.4 KiB
Bash
Executable file
52 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Reset
|
|
RESET='\033[0m' # Text Reset
|
|
|
|
# Regular Colors
|
|
BLACK='\033[0;30m' # Black
|
|
RED='\033[0;31m' # Red
|
|
GREEN='\033[0;32m' # Green
|
|
YELLOW='\033[0;33m' # Yellow
|
|
BLUE='\033[0;34m' # Blue
|
|
PURPLE='\033[0;35m' # Purple
|
|
CYAN='\033[0;36m' # Cyan
|
|
WHITE='\033[0;37m' # White
|
|
|
|
read -p "${CYAN}build the frontend? ${GREEN}Yes(y) ${RESET}/ No(n) ${RESET}/ Cancel(c)${RESET}:- " choice
|
|
if [ "$choice" = "y" ]; then
|
|
echo "building static site!"
|
|
pnpm i
|
|
pnpm run build
|
|
read -p "build the backend? Yes(y) / No(n) / Cancel(c):- " choice
|
|
if [ "$choice" = "y" ]; then
|
|
echo "building backend!"
|
|
cd backend
|
|
./gradlew shadowJar
|
|
systemctl restart nelle-observer-api
|
|
elif [ "$choice" = "n" ]; then
|
|
echo "exiting..."
|
|
elif [ "$choice" = "c" ]; then
|
|
echo "build cancelled"
|
|
else
|
|
echo "no choice given, exiting..."
|
|
fi
|
|
elif [ "$choice" = "n" ]; then
|
|
read -p "build the backend? Yes(y) / No(n) / Cancel(c):- " choice
|
|
if [ "$choice" = "y" ]; then
|
|
echo "building backend!"
|
|
cd backend
|
|
./gradlew shadowJar
|
|
systemctl restart nelle-observer-api
|
|
elif [ "$choice" = "n" ]; then
|
|
echo "exiting..."
|
|
elif [ "$choice" = "c" ]; then
|
|
echo "build cancelled"
|
|
else
|
|
echo "no choice given, exiting..."
|
|
fi
|
|
elif [ "$choice" = "c" ]; then
|
|
echo "Installation cancelled"
|
|
else
|
|
echo "No Choice given, exiting..."
|
|
fi
|