Pull local args into form
This commit is contained in:
24
frontend/src/environments/environment.local.template.ts
Normal file
24
frontend/src/environments/environment.local.template.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* 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)
|
||||
};
|
||||
Reference in New Issue
Block a user