Skip to content

Configuration

The environment configurations are located in the src/environments folder. The environment.ts file is used for development and the environment.prod.ts file is used for production.

Example

This is an example environment.ts file:

export const environment = {
  production: false,
  version: {
    major: '1',
    minor: '0',
    patch: '2',
  },
  build: {
    changeset: '1d6f3b3',
  },
  localStorageKeyPrefix: 'ionstarter_',
  /**
   * The URL to the privacy policy.
   */
  privacyPolicyUrl: 'https://ionstarter.dev/legal/privacy',
  /**
   * The URL to the terms of service.
   */
  termsOfServiceUrl: 'https://ionstarter.dev/legal/terms',
  /**
   * The email address for feedback.
   */
  feedbackEmailAddress: 'support@ionstarter.dev',
  /**
   * The RevenueCat API key for Android and iOS.
   */
  revenueCatApiKey: {
    android: 'goog_wEebfgHqfWeEXbVPYAQYqUpXqyv',
    ios: 'appl_fNSyHjOrYAaLSynqWQpxBrvbTKF',
  },
};