├── LICENSE ├── README.md ├── _init.py ├── config.conf ├── init.sh ├── requirements.txt └── run_debug.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonSchrodi/vscode_remote_debugging/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonSchrodi/vscode_remote_debugging/HEAD/README.md -------------------------------------------------------------------------------- /_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonSchrodi/vscode_remote_debugging/HEAD/_init.py -------------------------------------------------------------------------------- /config.conf: -------------------------------------------------------------------------------- 1 | WORKDIR /path/to/repo 2 | PORT 4242 3 | LAUNCH_JSON .vscode/launch.json 4 | SOURCE /home/usr/.bashrc 5 | ENV my_env 6 | -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonSchrodi/vscode_remote_debugging/HEAD/init.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | path 2 | debugpy -------------------------------------------------------------------------------- /run_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonSchrodi/vscode_remote_debugging/HEAD/run_debug.sh --------------------------------------------------------------------------------