#!/bin/bash
#
# sync-config.sh.example - Template for sync configuration
#
# Copy this file to sync-config.sh and fill in real credentials:
#   cp sync-config.sh.example sync-config.sh
#
# sync-config.sh is git-ignored and must never be committed.
#

# Production SSH (must match ~/.ssh/config alias)
PROD_SSH_ALIAS="parketry"

# Production database (native MySQL on host, NOT Docker)
PROD_DB_NAME="wordpress"
PROD_DB_USER="root"
PROD_DB_PASSWORD="changeme"

# Production paths
PROD_UPLOADS_PATH="/var/www/html/wordpress/wp-content/uploads/"
PROD_DOMAIN="https://www.parketry.de"

# Local environment
LOCAL_DOMAIN="http://localhost:1010"
LOCAL_CONTAINER_DB="parketry_mariadb"
LOCAL_CONTAINER_WP="parketry_wp"
LOCAL_DB_NAME="wordpress"
