From 72a7e58059e6a4296baf594b0702653636830cd6 Mon Sep 17 00:00:00 2001 From: Andrey Butirsky Date: Sat, 23 Sep 2023 21:56:11 +0000 Subject: [PATCH] meta: create devcontainer.json Maintainer: me Compile tested: mips, ath79, OpenWrt SNAPSHOT Description: Development container configuration. The container can run locally or in cloud (Codespaces). Sample usage: easily open full-featured VS Code IDE in browser, pre-configured for OpenWrt packages development. When run in the Codespaces, the packages repo is found in /workspaces/packages. To add it to the feeds, run inside the container: $ sed -i '1s;^;src-link workspaces /workspaces/packages\n;' ~/feeds.conf.default Signed-off-by: Andrey Butirsky --- .devcontainer/devcontainer.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..389a5a64d1 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +{ + "image": "docker.io/openwrt/sdk", + "features": { + } +}