Pull local args into form

This commit is contained in:
pratik
2025-10-23 09:36:24 -05:00
parent 2c9641ea8a
commit 086a77daab
5 changed files with 62 additions and 4 deletions

View 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)
};