# Show GN: 인터렉티브 푸시 알림 서비스 - torchi

> Clean Markdown view of GeekNews topic #27978. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=27978](https://news.hada.io/topic?id=27978)
- GeekNews Markdown: [https://news.hada.io/topic/27978.md](https://news.hada.io/topic/27978.md)
- Type: show
- Author: [jtpark03](https://news.hada.io/@jtpark03)
- Published: 2026-03-29T23:09:22+09:00
- Updated: 2026-03-29T23:09:22+09:00
- Original source: [torchi.app](https://torchi.app)
- Points: 1
- Comments: 0

## Topic Body

curl 한줄로 푸시 알림을 보낼 수 있는 서비스를 만들었어요.  
사실 이런 비슷한 서비스는 이미 많이 있습니다   
  
토치(torchi)는 단순 알림이 아니라 알림에 응답(액션)을 더할 수 있는 대화형 서비스에요  
  
```shell  
reaction=$(curl -s "https://torchi.app/api/v1/push/{TOKEN}/ask" \  
  -d 'msg=프로덕션 배포할까요?' \  
  -d 'actions=승인,거절')  
  
if [ "$reaction" = "승인" ]; then  
  ./deploy.sh  
fi  
```  
승인을 누르면 다음 단계 실행, 거절하면 파이프라인 중단.  
  
워크플로우에 사람의 개입이 필요하다면 스크립트 몇줄로 간단하게 추가할 수 있어요  
  
아직 부족한 점이 많지만 피드백 한번 해주시면 감사하겠습니다  
  
<https://torchi.app> - <https://github.com/opjt/torchi>

## Comments



_No public comments on this page._
