-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-example.yaml
More file actions
24 lines (22 loc) · 945 Bytes
/
config-example.yaml
File metadata and controls
24 lines (22 loc) · 945 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
# SMB connection settings
smb:
server: "//server/share" # SMB share path
username: "user"
password: "password" # or use password_cmd
# password_cmd: "pass show smb/stash-sync" # alternative: command that outputs password
remote_dir: "stash-sync" # base directory on the share for patches
# mount_path: "Z:" # Optional: explicit mount point (Windows drive letter)
# mount_path: "/mnt/share" # Optional: explicit mount point for Linux/WSL
# Optional: sync config from a git repo or other source
# Use 'git pull' if your config is in a git repository
# config_sync:
# command: "git pull"
# Or use 'rclone' to sync from a cloud storage provider
# command: "rclone sync your_remote:path/to/config_folder ."
# Optional: define projects so you can use -p/--project from anywhere
# root: ~/
# projects:
# my-app:
# path: "{root}/projects/my-app"
# backend:
# path: "{root}/projects/backend-api"