diff options
Diffstat (limited to 'src/env/common.ts')
-rw-r--r-- | src/env/common.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/env/common.ts b/src/env/common.ts index fbf477726..7b64c35a6 100644 --- a/src/env/common.ts +++ b/src/env/common.ts @@ -11,7 +11,7 @@ export const RELEASE_VERSION: string = process.env.EXPO_PUBLIC_RELEASE_VERSION || packageJson.version /** - * The env the app is running in e.g. development, testflight, production + * The env the app is running in e.g. development, testflight, production, e2e */ export const ENV: string = process.env.EXPO_PUBLIC_ENV @@ -63,6 +63,12 @@ export const LOG_LEVEL = (process.env.EXPO_PUBLIC_LOG_LEVEL || 'info') as export const LOG_DEBUG: string = process.env.EXPO_PUBLIC_LOG_DEBUG || '' /** + * The DID of the Bluesky appview to proxy to + */ +export const BLUESKY_PROXY_DID: Did = + process.env.EXPO_PUBLIC_BLUESKY_PROXY_DID || 'did:web:api.bsky.app' + +/** * The DID of the chat service to proxy to */ export const CHAT_PROXY_DID: Did = |