25 lines
962 B
TypeScript
25 lines
962 B
TypeScript
/**
|
|
* Local Development Form Defaults Template
|
|
*
|
|
* This file is a template for environment.local.ts which is gitignored.
|
|
* To use this feature:
|
|
* 1. Copy this file to environment.local.ts
|
|
* 2. Fill in your development credentials
|
|
* 3. The form will auto-populate in development mode
|
|
*
|
|
* NOTE: This only works in development. Production builds ignore these defaults.
|
|
*/
|
|
export const localFormDefaults = {
|
|
// Set to true to enable auto-population of form fields
|
|
enabled: false,
|
|
|
|
// Cloud Foundry / Tanzu Configuration
|
|
apiEndpoint: '', // e.g., 'https://api.cf.example.com'
|
|
username: '', // Your CF username
|
|
password: '', // Your CF password
|
|
organization: '', // Your CF organization
|
|
space: '', // Your CF space (e.g., 'dev', 'staging')
|
|
appName: '', // Default application name
|
|
skipSslValidation: false // Skip SSL validation (for development environments)
|
|
};
|