27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
# Local Development Configuration
|
|
# Copy to .env.local and fill in your values.
|
|
|
|
# ── MinIO credentials ─────────────────────────────────────────────────────────
|
|
MINIO_KEY=your_minio_root_user
|
|
MINIO_SECRET=your_minio_root_password
|
|
|
|
# ── SSH tunnel (remote DB) ────────────────────────────────────────────────────
|
|
# Only needed when starting with --profile ssh-db.
|
|
# NOTE: no inline comments allowed after values — Docker reads them literally.
|
|
|
|
SSH_HOST=136.114.183.15
|
|
SSH_PORT=22
|
|
SSH_USER=webmaster
|
|
# Must be an absolute path — Docker Compose does NOT expand ~
|
|
SSH_KEY_PATH=/Users/webmaster/.ssh/id_ed25519_crew_webmaster
|
|
|
|
SSH_DB_REMOTE_HOST=127.0.0.1
|
|
SSH_DB_REMOTE_PORT=3306
|
|
|
|
# Tell the app to route DB traffic through the tunnel container:
|
|
DB_HOST=db-tunnel
|
|
DB_PORT=3306
|
|
DB_DATABASE=custom_designs
|
|
DB_USERNAME=root
|
|
DB_PASSWORD=VeryStrongRootPass2025!
|