2020-06-06 19:41:42 +00:00
|
|
|
# Albatross
|
|
|
|
Back up what you care about in your Minecraft worlds.
|
|
|
|
|
2020-06-07 19:21:26 +00:00
|
|
|
Albatross backs up player files and region files within a certain configurable radius. It can also send Discord
|
|
|
|
webhooks. Backups are compressed and stored as `tar.gz` archives.
|
|
|
|
|
2020-10-24 18:41:11 +00:00
|
|
|
## Help
|
|
|
|
```
|
|
|
|
albatross 0.2.0
|
|
|
|
Backup your Minecraft Server!
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
albatross --config-path <config-path> <SUBCOMMAND>
|
|
|
|
|
|
|
|
FLAGS:
|
|
|
|
-h, --help Prints help information
|
|
|
|
-V, --version Prints version information
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
-c, --config-path <config-path> Path to the Albatross config [env: ALBATROSS_CONFIG=]
|
|
|
|
|
|
|
|
SUBCOMMANDS:
|
|
|
|
backup Backup a server
|
|
|
|
export Export a backup as a single player world
|
|
|
|
help Prints this message or the help of the given subcommand(s)
|
|
|
|
|
|
|
|
Process finished with exit code 1
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2020-06-06 19:41:42 +00:00
|
|
|
## Config
|
|
|
|
```toml
|
|
|
|
[backup]
|
|
|
|
# Minecraft sever directory
|
|
|
|
minecraft_dir = "/home/mc/server"
|
|
|
|
# Directory to place backups
|
|
|
|
output_dir = "/home/mc/backups"
|
|
|
|
# Number of backups to keep
|
|
|
|
backups_to_keep = 10
|
2020-06-07 19:21:26 +00:00
|
|
|
# Discord Webhook
|
|
|
|
discord_webhook = "https://discordapp.com/api/webhooks/"
|
2020-06-06 19:41:42 +00:00
|
|
|
|
2020-06-07 19:21:26 +00:00
|
|
|
# World config options
|
2020-06-06 19:41:42 +00:00
|
|
|
[[world_config]]
|
|
|
|
# world name
|
|
|
|
world_name = "world"
|
|
|
|
# world save radius (in blocks)
|
|
|
|
save_radius = 8000
|
|
|
|
```
|