https://github.com/affandra-solusi-teknologi/mysqldumpovertelegram
🐬 A simple code that will backup your MySQL database on a schedule with mysqldump and send the files to Telegram as a file hosting.
https://github.com/affandra-solusi-teknologi/mysqldumpovertelegram
database mysql mysqldump mysqldump-backup telegram-bot
Last synced: 3 months ago
JSON representation
🐬 A simple code that will backup your MySQL database on a schedule with mysqldump and send the files to Telegram as a file hosting.
- Host: GitHub
- URL: https://github.com/affandra-solusi-teknologi/mysqldumpovertelegram
- Owner: AFFANDRA-SOLUSI-TEKNOLOGI
- Created: 2023-08-30T17:13:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-22T08:36:24.000Z (3 months ago)
- Last Synced: 2025-02-22T09:40:23.833Z (3 months ago)
- Topics: database, mysql, mysqldump, mysqldump-backup, telegram-bot
- Language: TypeScript
- Homepage:
- Size: 102 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mysqldump Over Telegram
A simple code that will backup your MySQL database on a schedule with `mysqldump` and send the files to Telegram as a file hosting. *Pssttt... You can also back up multiple databases at once.*
## Self Hosted
```sh
# clone this repository
git clone https://github.com/AFFANDRA-SOLUSI-TEKNOLOGI/MysqldumpOverTelegram
cd MysqldumpOverTelegram# install needed dependencies
pnpm i# copy .env.example to .env
cp .env.example .env# now you can configure the settings in src/config.ts and .env
# build the project
pnpm build# start the project
pnpm start
```