├── .github └── workflows │ └── main.yml ├── README.md └── app.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
3 | 4 | ### NEW REPOSITORY AVAILABLE ### 5 | - Please deploy Bot from **[This New Repo](https://github.com/Vurusian/Virusi-Md)** 6 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | "name": "virusi-md@1.0.0", 2 | "description": "I am Virusi-Mbaya-Md Whatsapp MultiDevice Whatsapp Bot built in NodeJs to make experience better", 3 | "logo": "https://telegra.ph/file/8aa6951466328563add47.jpg", 4 | "keywords": ["virusi-md", "vurusian", "Virusi-Md"], 5 | "success_url": "/", 6 | "stack": "container", 7 | 8 | "env": { 9 | "OWNER_NAME": { 10 | "description": "Name for Bot Owner", 11 | "value": "Virusi Mbaya", 12 | "required": false }, 13 | 14 | 15 | "WELCOME": { 16 | "description": "put 'false' or 'true' to enable & disable WELCOME message ", 17 | "value": "false", 18 | "required": false 19 | }, 20 | "GOODBYE": { 21 | "description": "put 'false' or 'true' to enable & disable GOODBYE message ", 22 | "value": "false", 23 | "required": false 24 | }, 25 | "BOT_NAME": { 26 | "description": "Your Bot Name", 27 | "required": false, 28 | "value": "𝗩𝗜𝗥𝗨𝗦𝗜-𝗠𝗕𝗔𝗬𝗔-𝗠𝗗" 29 | }, 30 | "TZ": { 31 | "description": "Put TIME_ZONE according to your location", 32 | "required": false, 33 | "value": "Africa/Nairobi" 34 | }, 35 | "SUDO": { 36 | "description": "Numbers you wish to be second bot owners", 37 | "required": false, 38 | "value": "254748721079,254700505700" 39 | }, 40 | "READ_COMMAND": { 41 | "description": " Read bot cmds", 42 | "required": false, 43 | "value": "true" 44 | }, 45 | "WARN_COUNT": { 46 | "description": " Warn count for users to kick/block when warn limit exceed!", 47 | "required": false, 48 | "value": "5" 49 | }, 50 | "AUTO_SAVE_STATUS": { 51 | "description": " Auto save whatsapp status", 52 | "required": false, 53 | "value": "false" 54 | }, 55 | "HEROKU_API_KEY": { 56 | "description": "Put Your Heroku Api Key Here", 57 | "value":"", 58 | "required": true 59 | }, 60 | "HEROKU_APP_NAME": { 61 | "description": "Put Your Heroku App Name Here", 62 | "value": "", 63 | "required": true 64 | }, 65 | "WAPRESENCE": { 66 | "description": "Fill the value: 'unavailable'(for nothing) | 'available'(for alwaysonline) | 'composing'(for typing) | 'recording' | 'paused' ", 67 | "required": false, 68 | "value": "recording" 69 | }, 70 | "AUTO_READ_STATUS": { 71 | "description": "Fill the value true if you want bot view your Statuses.", 72 | "required": false, 73 | "value": "true" 74 | }, 75 | "MSGS_IN_LOG": { 76 | "description": "Fill the value -true- if you want to see Messages in logs.", 77 | "required": false, 78 | "value": "false" 79 | }, 80 | "READ_MESSAGE": { 81 | "description": "Fill the value true if you want bot to read all messages.", 82 | "required": false, 83 | "value": "false" 84 | }, 85 | "DISABLE_PM": { 86 | "description": "Make it 'false' if you wanna run bot in your pm (if MODE is Public)", 87 | "value": "true", 88 | "required": false 89 | }, 90 | "PREFIX": { 91 | "description": "Enter your desired prefix for bot. you can set `all | . | .!*`", 92 | "value": "." 93 | }, 94 | "USER_IMAGES": { 95 | "description": "User Images", 96 | "value": "https://telegra.ph/file/8aa6951466328563add47.jpg" 97 | }, 98 | "THUMB_IMAGE": { 99 | "description": "Menu Image", 100 | "value": "https://telegra.ph/file/8aa6951466328563add47.jpg" 101 | }, 102 | "OWNER_NUMBER": { 103 | "description": "The phone numbers of the users who you want to be admin for the bot (should be in international format without + and multiple numbers must be separated by a comma \",\")", 104 | "value": "254748721079,254700505700" 105 | }, 106 | "SESSION_ID": { 107 | "description": "put your SESSION_ID here.", 108 | "value": "" 109 | }, 110 | "MODE": { 111 | "description": "Worktype of your bot. Use public or private, if it is private then only bot number can use it. If public then everyone can use it.", 112 | "value": "private" 113 | }, 114 | "PACK_NAME": { 115 | "description": "Put Sticker Pack_Name.", 116 | "value": "♥️", 117 | "required": false 118 | }, 119 | "PACK_AUTHER": { 120 | "description": "Put Sticker Author_Name.", 121 | "value": "Virusi-Md", 122 | "required": false 123 | } 124 | }, 125 | "addons": [{ "plan": "heroku-postgresql:essential-1" }], 126 | "buildpacks": [ 127 | { "url": "https://github.com/heroku/heroku-buildpack-nodejs#latest" }, 128 | { "url": "https://github.com/carlosdommor/heroku-buildpack-ffmpeg-latest" } 129 | ] 130 | } 131 | --------------------------------------------------------------------------------