[2026-05-27] 포맷 후 복구 설치 스크립트 추가
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import asyncio, sys, os
|
||||
sys.path.insert(0, r'C:\Users\whdwo\OneDrive\바탕 화면\stockbot_v3')
|
||||
from app.main import load_env; load_env()
|
||||
from app.monitor.notifier import send
|
||||
mode = os.getenv('KIS_MOCK', 'true')
|
||||
dry = os.getenv('DRY_RUN', 'true')
|
||||
label = '[모의투자]' if mode == 'true' else '[실거래]'
|
||||
asyncio.run(send(f'{label} 자동매매 봇 시작 (DRY_RUN={dry})'))
|
||||
print('Discord 알림 전송 완료')
|
||||
Reference in New Issue
Block a user