GitHub - jun5239/TeleShellBot: A simple Telegram Bot to run shell commands remotely

A simple Telegram Bot to run shell commands remotely, so that you can maintain your server from mobile phones! demo

Install

Download or clone this repo, then

Config

module.exports = {
    config:function(){
        return (
            {
                adminUsers:[ADMIN_ID], //admin users' telegram id, should be numbers
                botToken: 'YOUR_BOT_TOEKN', // bot token

            }
        );
    }
};

Run

or

That is it!