Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.23 KB

README.md

File metadata and controls

44 lines (33 loc) · 1.23 KB

BackUpper

Simple and portable backup tool, that creates backups by simply copying.

Installation

  1. Download the latest release for your operating system
  2. Create a backupper-config.toml right next to the executable and configure it as seen below
  3. If you like, add the executable to your autostart

Example Config

[[backup]]
keep = 5
dest = "F:/Backups/Daily"
frequency = "daily"
sources = [
    "C:\\Users\\User\\Documents\\Important",
    "C:\\Users\\User\\Documents\\Very Important",
]

[[backup]]
keep = 3
dest = "F:/Backups/Monthly"
frequency = "monthly"
sources = [
    "C:\\Users\\User\\Pictures",
]

Development

deno run --allow-read --allow-write main.ts
deno compile --allow-read --allow-write main.ts

Credit