31 lines
946 B
Plaintext
31 lines
946 B
Plaintext
|
|
# Staging Deployment Configuration
|
||
|
|
# Staging environment - lower security, fast iteration
|
||
|
|
|
||
|
|
DEPLOY_METHOD="ssh"
|
||
|
|
|
||
|
|
# SSH/SFTP Configuration
|
||
|
|
DEPLOY_HOST="${DOCS_DEPLOY_HOST_STAGING:-staging-docs.vapora.io}"
|
||
|
|
DEPLOY_USER="${DOCS_DEPLOY_USER_STAGING:-docs-staging}"
|
||
|
|
DEPLOY_PATH="${DOCS_DEPLOY_PATH_STAGING:-/var/www/vapora-docs-staging}"
|
||
|
|
|
||
|
|
# HTTP Configuration
|
||
|
|
DEPLOY_ENDPOINT="${DOCS_DEPLOY_ENDPOINT_STAGING:-https://staging-docs.vapora.io/api/deploy}"
|
||
|
|
DEPLOY_TOKEN="${DOCS_DEPLOY_TOKEN_STAGING:-}"
|
||
|
|
|
||
|
|
# AWS S3 Configuration
|
||
|
|
AWS_BUCKET="${AWS_DOCS_BUCKET_STAGING:-vapora-docs-staging}"
|
||
|
|
AWS_REGION="${AWS_REGION:-us-east-1}"
|
||
|
|
|
||
|
|
# Google Cloud Storage Configuration
|
||
|
|
GCS_BUCKET="${GCS_DOCS_BUCKET_STAGING:-vapora-docs-staging}"
|
||
|
|
|
||
|
|
# Docker Registry Configuration
|
||
|
|
DEPLOY_REGISTRY="${DOCKER_REGISTRY:-registry.vapora.io}"
|
||
|
|
|
||
|
|
# Retention policy (shorter for staging)
|
||
|
|
BACKUP_RETENTION_DAYS=7
|
||
|
|
|
||
|
|
# Notification settings
|
||
|
|
NOTIFY_ON_SUCCESS="false"
|
||
|
|
NOTIFY_ON_FAILURE="true"
|