Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laurarozier/bansync
Syncs bans across multiple servers.
https://github.com/laurarozier/bansync
Last synced: 26 days ago
JSON representation
Syncs bans across multiple servers.
- Host: GitHub
- URL: https://github.com/laurarozier/bansync
- Owner: LauraRozier
- Created: 2018-11-10T20:37:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-23T12:14:54.000Z (about 6 years ago)
- Last Synced: 2024-04-16T07:48:49.244Z (8 months ago)
- Language: C#
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
**Ban Sync** provides a way for hosters to synchronize bans between servers.
## Features
- Syncronizing bans between two or more servers
- Additional assurance that bans stay even after server wipes## Configuration
- **Data Store Type : 0 (SQLite) or 1 (MySQL)** -- Which backend to use for storage
- **SQLite - Database Name** -- The SQLite database file
- **MySQL - Host** -- The MySQL database server address
- **MySQL - Port** -- The MySQL database server port
- **MySQL - Database Name** -- The MySQL database name
- **MySQL - Username** -- The MySQL database user
- **MySQL - Password** -- The MySQL database password```json
{
"Data Store Type : 0 (SQLite) or 1 (MySQL)": 0,
"SQLite - Database Name": "BanSync.db",
"MySQL - Host": "localhost",
"MySQL - Port": 3306,
"MySQL - Database Name": "BanSync",
"MySQL - Username": "root",
"MySQL - Password": "password"
}
```## Credits
- sqroot -- For creating the original Python plugin