An open API service indexing awesome lists of open source software.

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.

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
```