mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
22 lines
652 B
Plaintext
22 lines
652 B
Plaintext
# Database Migration Tool Environment Variables
|
|
#
|
|
# Copy this file to .env and fill in the actual values:
|
|
# cp .env.example .env
|
|
#
|
|
# NEVER commit the .env file - it contains sensitive credentials
|
|
|
|
# Source database (Supabase)
|
|
SOURCE_URL=postgresql://user:password@host:5432/database?schema=platform
|
|
|
|
# Destination database (GCP Cloud SQL or local)
|
|
DEST_URL=postgresql://user:password@host:5432/database?schema=platform
|
|
|
|
# Optional: GCP project for deploy.sh (default: agpt-dev)
|
|
# PROJECT_ID=agpt-dev
|
|
|
|
# Optional: GCP region (default: us-central1)
|
|
# REGION=us-central1
|
|
|
|
# Optional: K8s namespace for deploy.sh (default: dev-agpt)
|
|
# NAMESPACE=dev-agpt
|