From ade0dd72fbec083e0e0d7e61f4c29b68483964a0 Mon Sep 17 00:00:00 2001 From: SamPosh Date: Mon, 10 Apr 2023 15:33:22 +0530 Subject: [PATCH] Python devbox --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index ce72ebbf..7dd2b51f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,29 @@ # kickstart.nvim +### Python Devbox + +There is a docker file available , using that you can create your development environment +This will have kickstart.nvim plugin installed in it. + +``` +docker build -t devbox -f devbox.Dockerfile . + +# To run the container in background + +docker run -td --name mydevbox -v $(pwd):/workspaces devbox +# -v $(pwd) is used to create volume inside container . IF you run from the folder where source code is present then your container will have source code in it. You can use this for development + +docker exec -it mydevbox /bin/bash +# To enter into devbox + +# You can do debug using standard keys used in vscode +F5 - to start debug +F9 - to toggle debug breakpointer +F10 - step over +F11 - step into +To stop - Shift + f5 +``` + ### Introduction A starting point for Neovim that is: