Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 585 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 585 Bytes

backup

Usage

Create a config.json file with the folders you want to backup.

Exemple for Linux / Mac

[
    {
        "name": "test",
        "sourcePath": "./",
        "destination": "../test.zip"
    }
]

Exemple for Windows

[
    {
        "name": "Photos",
        "sourcePath": "P:\\Photos\\photos_perso",
        "destination": "E:\\Backups\\Photos\\photos_perso.zip"
    }
]

then run the app!

Compilation

You can use make to build the app. You'll need deno installed.

  • make build_windows
  • make build_mac
  • make build_linux