From 1b0c81a2b936752f605a34b578e0c8ac57c96b0d Mon Sep 17 00:00:00 2001 From: giancarlo Date: Fri, 19 Apr 2024 13:15:32 +0800 Subject: [PATCH] Update environment variable names in README Environment variable names in the README file of `keystatic` package have been renamed for clarity and simplicity. For instance, `KEYSTATIC_PATH_STORAGE_KIND` is now `KEYSTATIC_STORAGE_KIND`. The variable changes apply to both `cloud` and `github` storage kinds. --- packages/cms/keystatic/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/cms/keystatic/README.md b/packages/cms/keystatic/README.md index 01b7b7aca..edb544e19 100644 --- a/packages/cms/keystatic/README.md +++ b/packages/cms/keystatic/README.md @@ -17,17 +17,17 @@ KEYSTATIC_PATH=local # local, cloud, github You can also use Keystatic Cloud or GitHub as the storage kind as remote storage. -If `KEYSTATIC_PATH_STORAGE_KIND` is set to `cloud`, the following environment variables are required: +If `KEYSTATIC_STORAGE_KIND` is set to `cloud`, the following environment variables are required: ``` -KEYSTATIC_PATH_STORAGE_PROJECT=project-id +KEYSTATIC_STORAGE_PROJECT=project-id ``` -If `KEYSTATIC_PATH_STORAGE_KIND` is set to `github`, the following environment variables are required: +If `KEYSTATIC_STORAGE_KIND` is set to `github`, the following environment variables are required: ``` -KEYSTATIC_PATH_STORAGE_REPO=repo-name -KEYSTATIC_PATH_STORAGE_BRANCH_PREFIX=branch-prefix +KEYSTATIC_STORAGE_REPO=repo-name +KEYSTATIC_STORAGE_BRANCH_PREFIX=branch-prefix ``` GitHub mode requires the installation of a GitHub app.