Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robot7769/backup-plugin
Minecraft plugin to back up your worlds and files. Automatic backups, ability to choose which folders and files to back up and the number of backups kept on the server, notification of backups via webhook.
https://github.com/robot7769/backup-plugin
1-20-1 backup backup-tool minecraft minecraft-plugin minecraft-server plugin-bukkit
Last synced: 19 days ago
JSON representation
Minecraft plugin to back up your worlds and files. Automatic backups, ability to choose which folders and files to back up and the number of backups kept on the server, notification of backups via webhook.
- Host: GitHub
- URL: https://github.com/robot7769/backup-plugin
- Owner: Robot7769
- Created: 2024-03-17T20:43:37.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-03-17T20:58:54.000Z (10 months ago)
- Last Synced: 2024-04-21T03:46:25.064Z (9 months ago)
- Topics: 1-20-1, backup, backup-tool, minecraft, minecraft-plugin, minecraft-server, plugin-bukkit
- Language: Java
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Backup Plugin
This is a Java-based plugin designed to create backups of your Minecraft server. It uses the Bukkit API and is compatible with any server that supports this API, such as Spigot and PaperMC.
## Features
- Automatically creates backups at a specified interval.
- Allows manual creation of backups through a server command.
- Sends notifications to a Discord channel via a webhook when a backup is successfully created.## Usage
First, add the plugin to your server's `plugins` directory and restart the server. The plugin will create a default configuration file.
You can adjust the backup interval in the configuration file:
```yaml
backup-interval: 24 # Interval in hours
```The plugin will automatically create backups at the specified interval. The interval is in hours and the minimum value is 1.
To manually create a backup, use the `/backup` command in your server console or in-game:
```bash
/backup
```To enable Discord notifications, you need to set `backup-webhook` to `true` and provide a valid webhook URL in `backup-webhook-url` in the configuration file:
```yaml
backup-webhook: true
backup-webhook-url: "your-webhook-url"
```## Requirements
- Java 8 or higher
- A Minecraft server that supports the Bukkit API## Disclaimer
This plugin is not affiliated with or endorsed by Mojang or Microsoft. Use it responsibly and ensure you have sufficient storage for your backups.
Please replace `24` in `backup-interval: 24` with your desired backup interval in hours.
Insert your webhook url to `backup-webhook-url: ""` with the actual webhook URL of your Discord channel.