-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdev.sh
executable file
·39 lines (31 loc) · 991 Bytes
/
dev.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
#!/bin/bash
ENV_FILE=".env.dev"
echo "[dev.sh] environment variable file: $ENV_FILE"
# 환경 변수 파일이 존재하는지 확인
if [ -f "$ENV_FILE" ]; then
# 파일에서 각 줄을 읽어옴
while IFS= read -r line || [ -n "$line" ]; do
# 주석이 아닌 줄이고, key=value 형태인 경우에만 처리
if [[ $line != \#* && $line == *"="* ]]; then
# key와 value를 분리
key="${line%%=*}"
value="${line#*=}"
value=$(sed 's/^"\|"$//g' <<< "$value")
# 환경 변수로 등록
export "$key"="$value"
fi
done < "$ENV_FILE"
else
echo "[dev.sh] $ENV_FILE not found."
exit 1
fi
echo "[dev.sh] environment variable load complete"
./gradlew clean build
if [ $? -eq 0 ]; then
echo "[dev.sh] build complete"
else
echo "[dev.sh] build failed. exit code: $?"
exit 1
fi
sudo docker compose --env-file .env.dev up -d --build
echo "[dev.sh] deploy complete"