-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (24 loc) · 966 Bytes
/
Makefile
File metadata and controls
28 lines (24 loc) · 966 Bytes
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
.PHONY: chat-build chat-start cbt-bot-start start-all
# Go 기반 chat 서비스 빌드
chat-build:
@echo "=========================================="
@echo "Building chat service (Go)..."
@echo "=========================================="
cd chat/cmd && go build -o chat-service main.go
# Go 기반 chat 서비스 실행
chat-start: chat-build
@echo "=========================================="
@echo "Starting chat service (Go)..."
@echo "=========================================="
cd chat/cmd && ./chat-service
# Python 기반 CBT Bot 서비스 실행
cbt-bot-start:
@echo "=========================================="
@echo "Starting CBT Bot service (Python)..."
@echo "=========================================="
cd cbt-bot && py main.py
# 두 서비스를 모두 실행
start-all: chat-start cbt-bot-start
@echo "=========================================="
@echo "Starting all services..."
@echo "=========================================="