# Production Environment Configuration # No Code Architect Toolkit # The name of your application. APP_NAME=NCAToolkit # Debug mode setting. Set to `false` for production environments. APP_DEBUG=false # Your app's domain or subdomain, without the 'http://' or 'https://' prefix. APP_DOMAIN=example.com # Full application URL is automatically configured; no modification required. APP_URL=https://${APP_DOMAIN} # SSL settings SSL_EMAIL=user@example.com # API_KEY # Purpose: Used for API authentication. # Requirement: Mandatory. API_KEY=your_api_key_here # s3 Compatible Storage Env Vars # #S3_ACCESS_KEY=your_access_key #S3_SECRET_KEY=your_secret_key #S3_ENDPOINT_URL=https://your-endpoint-url #S3_REGION=your-region #S3_BUCKET_NAME=your-bucket-name # Google Cloud Storage Env Variables # # GCP_SA_CREDENTIALS # Purpose: The JSON credentials for the GCP Service Account. # Requirement: Mandatory if using GCP storage. #GCP_SA_CREDENTIALS=/path/to/your/gcp/service_account.json # GCP_BUCKET_NAME # Purpose: The name of the GCP storage bucket. # Requirement: Mandatory if using GCP storage. #GCP_BUCKET_NAME=your_gcp_bucket_name # LOCAL_STORAGE_PATH # Purpose: The local file system path for temporary file storage during processing. # Default: /tmp # Requirement: Optional. #LOCAL_STORAGE_PATH=/tmp # Google Cloud Run Jobs # Purpose: Offload long-running tasks to Cloud Run Jobs for scalability # Requirement: Optional. Configure if you want to use GCP Cloud Run Jobs. # # GCP_JOB_NAME # Purpose: Name of the Cloud Run Job to trigger for long-running tasks # Requirement: Required if using Cloud Run Jobs #GCP_JOB_NAME=your-cloud-run-job-name # # GCP_JOB_LOCATION # Purpose: GCP region where the Cloud Run Job is deployed # Requirement: Optional. Defaults to us-central1 #GCP_JOB_LOCATION=us-central1