ETC.

vscode (mac terminal, server remote sync)

Kyle79 2020. 4. 24. 14:18

 

 

https://withhsunny.tistory.com/57

 

[vscode] MAC 터미널 현재 위치에서 vscode 열기

You can also run VS Code from the terminal by typing 'code' after adding it to the path: 1. Launch VS Code. 2. Open the Command Palette (Ctrl+Shift+P) and type 'shell command' to find the Shell Comm..

withhsunny.tistory.com

 

 

 

https://yuddomack.tistory.com/entry/vscode-ftp%EB%A1%9C-%EC%9B%90%EA%B2%A9%EC%A0%91%EC%86%8D-%EC%BD%94%EB%93%9C-%EB%8F%99%EA%B8%B0%ED%99%94

 

vscode ftp로 원격접속, 코드 동기화

이전 글에 사용한 ftp-kr이 이래저래 사용성이 좋지 않아서 다른 플러그인을 사용하게됐는데, 이번 글에서는 vscode에서 SFTP 플러그인을 사용하여 서버와 코드를 동기화 할 수 있도록 하는 방법을

yuddomack.tistory.com

 

 

** launch.json

{
    // IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
    // 기존 특성에 대한 설명을 보려면 가리킵니다.
    // 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python",
            "type": "python",
            "request": "launch",
            "stopOnEntry": false,
            "program": "${file}",
            "cwd": "${workspaceRoot}",
            "env": {
                "PYTHONPATH": "${workspaceRoot}${pathSeparator}${env:PYTHONPATH}"
            },
            "externalConsole": false,
            "debugOptions": [
                "WaitOnAbnormalExit",
                "WaitOnNormalExit",
                "RedirectOutput"
            ]
        },
        {
            "name": "Python: Current File",
            "type": "python",
            "request": "launch",
            "stopOnEntry": false,
            "module": "unittest",
            "args": [
                "${file}",
            ],
            "cwd": "${workspaceRoot}",
            "env": {
                "PYTHONPATH": "${workspaceRoot}${pathSeparator}${env:PYTHONPATH}"
            },
            "externalConsole": false,
            "debugOptions": [
                "WaitOnAbnormalExit",
                "WaitOnNormalExit",
                "RedirectOutput"
            ]
        }
    ]
}

 

 

** settings.json

{
    "python.envFile": "${workspaceRoot}/.env",
    
    "python.linting.pylintEnabled": false,
    "python.linting.flake8Enabled": true,
    "python.linting.flake8Args": [
        "--max-line-length=200"
    ],
    "python.formatting.provider": "black",
    "python.linting.enabled": true,
}

 

 

** .env

LC_ALL="en_US.UTF-8"
LC_CTYPE="en_US.UTF-8"
RUN_ENV=PROD

PYTHONPATH=.

'ETC.' 카테고리의 다른 글

Docker Hub  (0) 2020.05.03
Dockerfile 기본 명령어  (0) 2020.05.01
TabNine  (0) 2020.04.24
알고리즘 문제 풀이 leetcode  (0) 2020.04.16
Install RPM for Mac  (0) 2020.04.13