We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f5610d commit cf3cdf1Copy full SHA for cf3cdf1
2 files changed
core/.vscode/launch.json
@@ -0,0 +1,15 @@
1
+{
2
+ "configurations": [
3
+ {
4
+ // Use this to debug python code in the remote container
5
+ // Requires the "Remote development" extensions to be installed
6
+ // as well as the Python debugger extension in the container
7
+ "name": "Python Debugger in Remote Container: Current File",
8
+ "type": "debugpy",
9
+ "request": "launch",
10
+ "program": "${file}",
11
+ "console": "integratedTerminal",
12
+ "python": "/usr/blueos/venv/bin/python3"
13
+ }
14
+ ]
15
+}
core/Dockerfile
@@ -50,6 +50,8 @@ COPY ./services /home/pi/services
50
51
COPY ./tools /home/pi/tools
52
53
+COPY ./.vscode /home/pi/.vscode
54
+
55
# Virtual environment creation and packages installation
56
WORKDIR /home/pi
57
RUN uv venv && uv sync --frozen --no-default-groups
0 commit comments