forked from daggerhashimoto/openclaw-nerve
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
26 lines (23 loc) · 1.25 KB
/
example.env
File metadata and controls
26 lines (23 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# ── Backups Configuration ──────────────────────────────────────────────
# Copy this file to .env and fill in your values.
# See: docs/BACKUPS_FEATURE.md for full documentation.
# ── 1. Local Backup ─────────────────────────────────────────────────
BACKUP_LOCAL_ENABLED=true
BACKUP_LOCAL_DIR=~/Backups
BACKUP_RETENTION_DAYS=7
BACKUP_LOCAL_SCHEDULE=0 1 * * *
# ── 2. NAS Backup (SSH key-based auth) ────────────────────────────
# Requires SSH key access to NAS — no password needed
BACKUP_NAS_ENABLED=false
BACKUP_NAS_HOST=192.168.2.3
BACKUP_NAS_USER=CoWorker.Neon
BACKUP_NAS_BACKUP_PATH=Files Neon/backups/openclaw-full
BACKUP_NAS_RETENTION_DAYS=30
BACKUP_NAS_SCHEDULE=30 1 * * *
# ── 3. GitHub Backup ───────────────────────────────────────────────
BACKUP_GITHUB_ENABLED=false
BACKUP_GITHUB_REPO=owner/repo
BACKUP_GITHUB_TOKEN=
BACKUP_GITHUB_BRANCH=main
BACKUP_GITHUB_BACKUP_PATH=backups
BACKUP_GITHUB_SCHEDULE=0 3 * * *