-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.conf
More file actions
44 lines (32 loc) · 958 Bytes
/
Copy pathexample.conf
File metadata and controls
44 lines (32 loc) · 958 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# drive-sync configuration
#
# Copy this file and customize for your setup.
# Usage: ./sync.sh my-config.conf --commit
# --- Required ---
# rclone remote name (set up via: rclone config create <name> drive)
REMOTE="gdrive-myremote"
# Local directory to sync into
LOCAL_DIR="/Users/you/build/my-project"
# --- Optional ---
# Sync Drive content into a subdirectory (leave empty for root)
SYNC_SUBDIR=""
# Push to GitHub after syncing? (true/false)
GIT_PUSH=true
# Convert .docx to .md via pandoc? (true/false)
CONVERT_DOCX=true
# Skip broken Google Drive shortcuts (true/false)
SKIP_DANGLING_SHORTCUTS=true
# rclone exclude patterns
EXCLUDES=(
"*.mp4"
"*.webm"
"*.mkv"
"*.wav"
"*Recording*"
)
# --- Reverse sync (optional, Local → Drive) ---
# rclone remote for pushing local files back to Drive
# Leave empty to disable
REVERSE_SYNC_REMOTE=""
# File patterns to include in reverse sync
REVERSE_SYNC_INCLUDES=("*.md" "*.csv")