22 lines
716 B
Markdown
22 lines
716 B
Markdown
|
---
|
||
|
title: venv-backup-script.sh
|
||
|
categories: [backup]
|
||
|
source: bin/venv-backup-script.sh
|
||
|
generated: 2025-05-22T08:38:59-04:00
|
||
|
---
|
||
|
|
||
|
# venv-backup-script.sh
|
||
|
|
||
|
#!/usr/bin/env bash
|
||
|
### Configuration ###
|
||
|
Setting the root directory for virtual environments
|
||
|
Define the backup directory where backups will be stored locally
|
||
|
Define the retention period for local backups in days. Older backups will be deleted.
|
||
|
Remote settings for syncing backups to a remote server
|
||
|
Define the SSH user for remote access
|
||
|
Define the remote host (the server where backups will be stored)
|
||
|
Define the path on the remote server where the backups will be stored
|
||
|
### Derived ###
|
||
|
|
||
|
_Auto-generated from source script on Thu May 22 08:38:59 AM EDT 2025_
|