From 51956ba356caf75a79b07ed5b23e072926a5dc33 Mon Sep 17 00:00:00 2001 From: mauwii Date: Sun, 19 Feb 2023 17:50:22 +0100 Subject: [PATCH] update `vs-code.md`, fix `docs/help/index.md` --- docs/help/IDE-Settings/vs-code.md | 17 +++++++++++++---- docs/help/index.md | 2 +- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/docs/help/IDE-Settings/vs-code.md b/docs/help/IDE-Settings/vs-code.md index ea952b192e..25be691d0e 100644 --- a/docs/help/IDE-Settings/vs-code.md +++ b/docs/help/IDE-Settings/vs-code.md @@ -18,7 +18,7 @@ environment and update the deps (pip, setuptools and wheel). Into this venv we will then install the pyproject.toml in editable mode with dev, docs and test dependencies. -```json +```json title=".vscode/tasks.json" { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format @@ -55,9 +55,16 @@ dev, docs and test dependencies. { "label": "build InvokeAI", "detail": "Build pyproject.toml with extras dev, docs and test", - "command": "${workspaceFolder}/.venv/bin/python", - "args": ["-m", "pip", "install", "-e", ".[dev,docs,test]"], - "dependsOn": "Create venv", + "command": "${workspaceFolder}/.venv/bin/python3", + "args": [ + "-m", + "pip", + "install", + "--use-pep517", + "--editable", + ".[dev,docs,test]" + ], + "dependsOn": "Create virtual environment", "dependsOrder": "sequence", "group": { "kind": "build", @@ -76,6 +83,8 @@ dev, docs and test dependencies. } ``` +The fastest way to build InvokeAI now is ++cmd+shift+b++ + ## launch.json This file is used to define debugger configurations, so that you can one-click diff --git a/docs/help/index.md b/docs/help/index.md index b4236e8244..fa56264486 100644 --- a/docs/help/index.md +++ b/docs/help/index.md @@ -9,4 +9,4 @@ Here you will find help to topics like - configuration recommendation for IDEs If you have an Idea about what's missing and aren't scared from contributing, -just take a look at [DOCS](./contribute/030_DOCS.md) to find out how to do so. +just take a look at [DOCS](./contributing/030_DOCS.md) to find out how to do so.