mirror of
https://github.com/selfxyz/self.git
synced 2026-02-19 02:24:25 -05:00
17 lines
816 B
TypeScript
17 lines
816 B
TypeScript
// SPDX-License-Identifier: BUSL-1.1; Copyright (c) 2025 Social Connect Labs, Inc.; Licensed under BUSL-1.1 (see LICENSE); Apache-2.0 from 2029-06-11
|
|
|
|
/* This file provides compatiblity between how web expects env variables to be and how native does.
|
|
* on web it is aliased to @env on native it is not used
|
|
*/
|
|
|
|
export const IS_TEST_BUILD = process.env.IS_TEST_BUILD === 'true';
|
|
export const GOOGLE_SIGNIN_WEB_CLIENT_ID =
|
|
process.env.GOOGLE_SIGNIN_WEB_CLIENT_ID;
|
|
export const SENTRY_DSN = process.env.SENTRY_DSN;
|
|
export const SEGMENT_KEY = process.env.SEGMENT_KEY;
|
|
export const ENABLE_DEBUG_LOGS = process.env.ENABLE_DEBUG_LOGS === 'true';
|
|
export const DEFAULT_PNUMBER = undefined;
|
|
export const DEFAULT_DOB = undefined;
|
|
export const DEFAULT_DOE = undefined;
|
|
export const MIXPANEL_NFC_PROJECT_TOKEN = undefined;
|