mirror of
https://github.com/selfxyz/self.git
synced 2026-01-11 07:38:00 -05:00
* chore: centralize license header scripts * chore: run license header checks from root * add header to other files * add header to bundle * add migration script and update check license headers * convert license to mobile sdk * migrate license headers * remove headers from common; convert remaining * fix headers * add license header checks
21 lines
644 B
JavaScript
21 lines
644 B
JavaScript
// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
|
|
|
|
export const DEFAULT_DOB = undefined;
|
|
|
|
export const DEFAULT_DOE = undefined;
|
|
|
|
export const DEFAULT_PNUMBER = undefined;
|
|
|
|
export const ENABLE_DEBUG_LOGS = false;
|
|
|
|
export const GOOGLE_SIGNIN_ANDROID_CLIENT_ID = 'mock-google-client-id';
|
|
|
|
export const GOOGLE_SIGNIN_WEB_CLIENT_ID = 'mock-google-web-client-id';
|
|
|
|
export const IS_TEST_BUILD = false;
|
|
export const MIXPANEL_NFC_PROJECT_TOKEN = undefined;
|
|
export const SEGMENT_KEY = 'mock-segment-key';
|
|
export const SENTRY_DSN = 'mock-sentry-dsn';
|