백엔드 버젼표시
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -22,3 +22,4 @@ dist-ssr
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
public/webftp-backend.exe
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
* - **NEW**: 포트 충돌 자동 감지 및 프로세스 종료 기능
|
||||
*/
|
||||
|
||||
const APP_VERSION = "0.0.1";
|
||||
|
||||
const WebSocket = require('ws');
|
||||
const ftp = require('basic-ftp');
|
||||
const fs = require('fs');
|
||||
@@ -51,7 +53,7 @@ function startServer() {
|
||||
});
|
||||
|
||||
wss.on('listening', () => {
|
||||
console.log(`\n🚀 WebZilla FTP Proxy Server가 ws://localhost:${PORT} 에서 실행 중입니다.`);
|
||||
console.log(`\n🚀 WebZilla FTP Proxy Server [v${APP_VERSION}] 가 ws://localhost:${PORT} 에서 실행 중입니다.`);
|
||||
console.log(`📂 설정 폴더: ${configDir}`);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user