소스 검색

README.md

gram-cli 7 달 전
부모
커밋
edb9e50635
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      README.md
  2. 1 1
      public/main.js

+ 1 - 0
README.md

@@ -0,0 +1 @@
+uvicorn stt_whisper:app --host 0.0.0.0 --port 8000

+ 1 - 1
public/main.js

@@ -6,7 +6,7 @@ import { elements } from './elements.js';
 
 // 시작버튼 클릭
 elements.startBtn.addEventListener('click', async () => {
-    WebSocketManager.init('ws://localhost:8000/audio-stream');
+    WebSocketManager.init('ws://jonghyun2.site:8000/audio-stream');
     await AudioManager.initWAVMediaRecorder();
     UIManager.onStart();
 });