"memo"Vscode에서 Flask를 remote debug하는 방법

원격 연결 확장 기능 유형


  • SSH
  • Containers (이번에는 이것을 사용)
  • WSL

  • 확장 기능은


  • Remote - Containers를 설치했습니다.

  • 원격 연결 설정


  • “remote-containers: Add Development Container Configuration Files...” 선택
    image.png
  • “Docker in Docker Compiose debian:9” 선택

  • 지금까지 진행하면 .devcontainer 폴더와 세 개의 파일이 생성됩니다.
  • .devcontainer
  • devcontainer.json
  • docker-compose.yml
  • Dockerfile



  • docker compose


  • devcontainer.json 편집
  • "ms-azuretools.vscode-docker"⇒"ms-python.python"

  • {
        "name": "Flask Remote Sample",
        "dockerComposeFile": "docker-compose.yml",
        "service": "web_flask",
        "workspaceFolder": "/projects",
        "extensions": [
          "ms-python.python"
        ]
    }
    

    움직이고 보기


  • Remote-Containers: Open Folders in Container... 선택




  • 참고



    VS Code의 Remote Development에서 Flask 앱을 ​​디버깅해 보았습니다.
    Flask Tutorial in Visual Studio Code
    microsoft/python-sample-vscode-flask-tutorial

    docker.for.mac.localhost

    좋은 웹페이지 즐겨찾기