From 69e4d33f3e6748d1548baddca5bc93f90284cf9a Mon Sep 17 00:00:00 2001 From: Lola-Ojabowale Date: Mon, 23 Oct 2023 14:23:53 -0400 Subject: [PATCH 1/2] adding an .env.example --- data-client/.env.example | 7 +++++++ designer-extension/.env.example | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 data-client/.env.example create mode 100644 designer-extension/.env.example diff --git a/data-client/.env.example b/data-client/.env.example new file mode 100644 index 00000000..825ca06b --- /dev/null +++ b/data-client/.env.example @@ -0,0 +1,7 @@ +CLIENT_ID='clent id' + +CLIENT_SECRET='client secret' + +OPENAI_API_KEY='openai api key' + +NEXT_PUBLIC_BACKEND_URL='data client url' \ No newline at end of file diff --git a/designer-extension/.env.example b/designer-extension/.env.example new file mode 100644 index 00000000..825ca06b --- /dev/null +++ b/designer-extension/.env.example @@ -0,0 +1,7 @@ +CLIENT_ID='clent id' + +CLIENT_SECRET='client secret' + +OPENAI_API_KEY='openai api key' + +NEXT_PUBLIC_BACKEND_URL='data client url' \ No newline at end of file From 92ff5b94d8b70f4d1365c8474f30cdf48cfd9bdf Mon Sep 17 00:00:00 2001 From: Lola-Ojabowale Date: Mon, 23 Oct 2023 14:38:17 -0400 Subject: [PATCH 2/2] updating the .env.example formatting --- data-client/.env.example | 12 ++++++++---- designer-extension/.env.example | 12 ++++++++---- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/data-client/.env.example b/data-client/.env.example index 825ca06b..3a750872 100644 --- a/data-client/.env.example +++ b/data-client/.env.example @@ -1,7 +1,11 @@ -CLIENT_ID='clent id' +# Your application's client ID +CLIENT_ID='your_client_id' -CLIENT_SECRET='client secret' +# Your application's secret key +CLIENT_SECRET='your_client_secret' -OPENAI_API_KEY='openai api key' +# Your OpenAI API key +OPENAI_API_KEY='your_openai_api_key' -NEXT_PUBLIC_BACKEND_URL='data client url' \ No newline at end of file +# URL where your data client runs. Do not include trailing slashes. +NEXT_PUBLIC_BACKEND_URL='https://your_data_client_url' diff --git a/designer-extension/.env.example b/designer-extension/.env.example index 825ca06b..3a750872 100644 --- a/designer-extension/.env.example +++ b/designer-extension/.env.example @@ -1,7 +1,11 @@ -CLIENT_ID='clent id' +# Your application's client ID +CLIENT_ID='your_client_id' -CLIENT_SECRET='client secret' +# Your application's secret key +CLIENT_SECRET='your_client_secret' -OPENAI_API_KEY='openai api key' +# Your OpenAI API key +OPENAI_API_KEY='your_openai_api_key' -NEXT_PUBLIC_BACKEND_URL='data client url' \ No newline at end of file +# URL where your data client runs. Do not include trailing slashes. +NEXT_PUBLIC_BACKEND_URL='https://your_data_client_url'