From 591288e55a3af87ad85ff617c9480d14c28ba879 Mon Sep 17 00:00:00 2001 From: Colin Weir Date: Thu, 27 Jul 2023 12:09:41 -0400 Subject: [PATCH] Disambiguate the parameter required to encrypt secrets (#778) --- docs/authoring_apps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/authoring_apps.md b/docs/authoring_apps.md index c1ffb333b5..8ab08f6748 100644 --- a/docs/authoring_apps.md +++ b/docs/authoring_apps.md @@ -57,7 +57,7 @@ Many apps need secret values like API keys. When publishing your app to the [Tid To encrypt values, use the `pixlet encrypt` command. For example: ```shell -# replace "googletraffic" with the folder name of your app in the community repo +# replace "googletraffic" with the packageName of your app in the community repo $ pixlet encrypt googletraffic top_secret_google_api_key_123456 "AV6+...." # encrypted value ``` @@ -97,4 +97,4 @@ Some apps may take a long time to render, particularly if they produce a long an $ pixlet profile path_to_your_app.star ``` -When you profile your app, it will print a list of the functions which consume the most CPU time. Improving these will have the biggest impact on overall run time. \ No newline at end of file +When you profile your app, it will print a list of the functions which consume the most CPU time. Improving these will have the biggest impact on overall run time.