본문 바로가기
CLASS/기타

vs code 실서버 연결

by hingu 2024. 4. 21.
ftp 연결

ctrl+shift+p 검색 ftp-kr:Init 후 해당 내용으로 세팅

{
    "host": "아이디.dothome.co.kr",
    "username": "아이디",
    "password": "비번",
    "remotePath": "/html",
    "protocol": "ftp",
    "port": 21,
    "fileNameEncoding": "utf8",
    "autoUpload": true,
    "autoDelete": false,
    "autoDownload": false,
    "ignore": [
        ".git",
        "/.vscode"
    ]
}

 

 ** extention ** 
- vscode extensions list
html snippets(취소선 되어있는 경우 x)
remote - ssh
ftp-kr
javascript(ES6) code snippets
Live Server
-서버 환경에 맞게 에디터 세팅해야함(java버전등 확인)

'CLASS > 기타' 카테고리의 다른 글

게시판 editor api 설치 [ ckeditor4 ]  (0) 2024.06.17
sts 패키지명 path에서 제거  (0) 2024.05.31
SPA / MPA  (0) 2024.05.30
XML  (0) 2024.04.22
css 바꿨는데 수정안될경우  (0) 2024.04.22