17 lines
691 B
Bash
17 lines
691 B
Bash
# Used by compose.deploy.yaml (image: git.jerryyan.net/q792602257/agentic-mobile-control:${IMAGE_TAG}).
|
|
# Jenkins publishes IMAGE_TAG as "<BUILD_NUMBER>-<git short sha>"; match the
|
|
# tag of the build you intend to deploy.
|
|
IMAGE_TAG=latest
|
|
|
|
POSTGRES_DB=device_cloud
|
|
POSTGRES_USER=device_cloud
|
|
POSTGRES_PASSWORD=change-me-database-password
|
|
|
|
CLOUD_API_PORT=8001
|
|
|
|
# Fernet key protecting database-managed LLM Provider API keys. Generate once
|
|
# and preserve it with the database backups (rotating it makes stored keys
|
|
# undecryptable):
|
|
# python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
|
|
CLOUD_LLM_PROVIDER_ENCRYPTION_KEY=change-me-generate-a-fernet-key
|