From 67d4f80a61f0aa1ec9d2bef0d250bee9e10d576d Mon Sep 17 00:00:00 2001 From: Derek Bekoe Date: Wed, 11 Oct 2017 10:54:04 -0700 Subject: [PATCH] Move the index (#2) * Move the index * Remove PR template as empty --- .github/PULL_REQUEST_TEMPLATE.md | 4 ---- README.md | 3 ++- index.json => src/index.json | 0 3 files changed, 2 insertions(+), 5 deletions(-) delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md rename index.json => src/index.json (100%) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index eb37fc6574c..00000000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,4 +0,0 @@ - - ------ - diff --git a/README.md b/README.md index 7db837dd74d..0e30380778d 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,14 @@ This repository serves two purposes and they are independent: -1. An `index.json` where you can add your extension and make it available through Azure CLI. +1. An index.json where you can add your extension and make it available through Azure CLI. 2. A source code directory, `src`, to host your extension source code. For documentation on authoring an extension, see [Extension Documentation](https://github.com/Azure/azure-cli/tree/master/doc/extensions) ## About index.json +- The index is at `src/index.json`. - Modify the index by creating a PR. - All extensions added to the index *are public* and will be available to *all* CLI users. - Your extension source code does not have to be in this repository to be available in the index. diff --git a/index.json b/src/index.json similarity index 100% rename from index.json rename to src/index.json