15 lines
831 B
Plaintext
15 lines
831 B
Plaintext
project_id = "your-gcp-project-id"
|
|
region = "us-central1"
|
|
zone = "us-central1-a"
|
|
storage_bucket_name = "your-app-storage-bucket"
|
|
firestore_db_name = "contoso-imagedb"
|
|
|
|
# Vector Database Configuration
|
|
qdrant_api_key = "your-secure-api-key-here" # Optional: leave empty for no authentication
|
|
allowed_cidr_blocks = "YOUR_IP_ADDRESS/32" # Replace with your IP or network range
|
|
use_static_ip = false # Set to true if you want a static IP
|
|
|
|
# Secret Configuration (all optional - random values will be generated if not provided)
|
|
api_key_secret = "" # Optional: will generate random key if empty
|
|
gcs_credentials_json = "" # Optional: JSON content of GCS service account key
|
|
firestore_credentials_json = "" # Optional: JSON content of Firestore service account key |