22 lines
386 B
Markdown
22 lines
386 B
Markdown
# README
|
|
|
|
## Setup
|
|
|
|
Create a config including secrets
|
|
|
|
```
|
|
mkdir secrets && cp nextcloud.json.sample secrets/nextcloud.json
|
|
```
|
|
|
|
Modify the content to match the specific setup
|
|
|
|
Manually run the respective backup script manually or regularly as `cron` job, or `systemd` timer, e.g.:
|
|
|
|
```
|
|
crontab -e
|
|
```
|
|
|
|
```
|
|
37 0 * * * /path/to/the/backup/script
|
|
```
|
|
to run a backup each night at 00:37.
|