Skip to content
This repository was archived by the owner on Sep 26, 2024. It is now read-only.

Add .env.example for environment setup #17

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions data-client/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Your application's client ID
CLIENT_ID='your_client_id'

# Your application's secret key
CLIENT_SECRET='your_client_secret'

# Your OpenAI API key
OPENAI_API_KEY='your_openai_api_key'

# URL where your data client runs. Do not include trailing slashes.
NEXT_PUBLIC_BACKEND_URL='https://your_data_client_url'
11 changes: 11 additions & 0 deletions designer-extension/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Your application's client ID
CLIENT_ID='your_client_id'

# Your application's secret key
CLIENT_SECRET='your_client_secret'

# Your OpenAI API key
OPENAI_API_KEY='your_openai_api_key'

# URL where your data client runs. Do not include trailing slashes.
NEXT_PUBLIC_BACKEND_URL='https://your_data_client_url'