diff options
author | hailey <me@haileyok.com> | 2025-08-07 12:33:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-07 12:33:38 -0700 |
commit | c0593e49792af987b0c7accd6301f235d132030f (patch) | |
tree | afc1faccd7686646d09567165b1f0ebe7849f7b7 /src/env/common.ts | |
parent | 39e775a3768007df05ab91fe3ead39e36355b19a (diff) | |
download | voidsky-c0593e49792af987b0c7accd6301f235d132030f.tar.zst |
Add device attestation to signup flow (#8757)
Diffstat (limited to 'src/env/common.ts')
-rw-r--r-- | src/env/common.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/env/common.ts b/src/env/common.ts index 5b902622b..dd2df7b17 100644 --- a/src/env/common.ts +++ b/src/env/common.ts @@ -78,3 +78,10 @@ export const SENTRY_DSN: string | undefined = process.env.EXPO_PUBLIC_SENTRY_DSN */ export const BITDRIFT_API_KEY: string | undefined = process.env.EXPO_PUBLIC_BITDRIFT_API_KEY + +/** + * GCP project ID which is required for device attestation + */ +export const GCP_PROJECT_ID: number = Number( + process.env.EXPO_PUBLIC_GCP_PROJECT_ID, +) |