├── heroku.yml ├── README.md ├── Dockerfile └── app.json /heroku.yml: -------------------------------------------------------------------------------- 1 | build: 2 | docker: 3 | worker: Dockerfile 4 | run: 5 | worker: npm start 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # After forking this, click here: 2 | Deploy bot 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/souravkl11/rgnk-v2:latest 2 | 3 | RUN git clone https://github.com/souravkl11/raganork-md /skl/Raganork 4 | WORKDIR /skl/Raganork 5 | ENV TZ=Asia/Kolkata 6 | RUN yarn install --network-concurrency 1 7 | CMD ["node", "index.js"] 8 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rgnk wabot", 3 | "description": "WhatsApp public/user bot", 4 | "logo": "", 5 | "keywords": ["WhatsApp"], 6 | "repository": "https://github.com/souravkl11/raganork-md", 7 | "website": "https://raganork.ml", 8 | "success_url": "https://raganork.ml", 9 | "stack": "container", 10 | "env": { 11 | "HANDLERS": { 12 | "description": "Prefix of commands. Can be also false", 13 | "required": true, 14 | "value":".," 15 | }, 16 | "MULTI_HANDLERS": { 17 | "description": "Use prefix as given handlers and also without handlers", 18 | "required": true, 19 | "value":"false" 20 | }, 21 | "READ_MESSAGES": { 22 | "description": "Bot will read all messages. Can be also false", 23 | "required": true, 24 | "value":"false" 25 | }, 26 | "READ_COMMAND": { 27 | "description": "Bot will read all commands (blue tick). Can be also false", 28 | "required": true, 29 | "value":"true" 30 | }, 31 | "HEROKU_API_KEY": { 32 | "description": "For updating bot and setting vars remotely", 33 | "required": true, 34 | "value":"" 35 | }, 36 | "HEROKU_APP_NAME": { 37 | "description": "Exact name which you gave at the top", 38 | "required": true, 39 | "value":"" 40 | }, 41 | "STICKER_DATA": { 42 | "description": "Name of stickers created using bot. Can also split using ;", 43 | "required": true, 44 | "value":"Raganork pack;Author name" 45 | }, 46 | "CHATBOT": { 47 | "description": "AI chatbot", 48 | "required": true, 49 | "value":"off" 50 | }, 51 | "BOT_NAME": { 52 | "description": "Name of AI chatbot", 53 | "required": true, 54 | "value":"Raganork" 55 | }, 56 | "AUDIO_DATA": { 57 | "description": "Name of audio (take) name;name;image(url)", 58 | "required": true, 59 | "value":"Raganork;Souravkl11;https://i.imgur.com/YchATyT.jpeg" 60 | }, 61 | "MODE": { 62 | "description": "Private or public", 63 | "required": true, 64 | "value":"private" 65 | }, 66 | "SUDO": { 67 | "description": "These numbers can control your bot. seperate with commas", 68 | "required": false, 69 | "value":"" 70 | }, 71 | "BLOCK_CHAT": { 72 | "description": "Block bot in specific groups, enter jids here sepereated with commas", 73 | "required": false, 74 | "value":"" 75 | }, 76 | "REJECT_CALLS": { 77 | "description": "Auto reject calls, true/false", 78 | "required": false, 79 | "value":"false" 80 | }, 81 | "ALLOWED": { 82 | "description": "Country codes allowed by antifake", 83 | "required": false, 84 | "value":"91,48" 85 | }, 86 | "WARN": { 87 | "description": "Warn limit", 88 | "required": false, 89 | "value":"3" 90 | }, 91 | "LANGUAGE": { 92 | "description": "Available languages: english,manglish,turkish", 93 | "required": false, 94 | "value":"english" 95 | }, 96 | "AUTO_READ_STATUS": { 97 | "description": "View status updates automatically", 98 | "required": false, 99 | "value":"true" 100 | }, 101 | "ALIVE": { 102 | "description": "Alive message, customize your alive msg by looking wiki", 103 | "required": false, 104 | "value":"_Bot is alive since {uptime}_" 105 | }, 106 | "SESSION": { 107 | "description": "Your session code, obtained by scanning QR", 108 | "required": true 109 | } 110 | }, 111 | "addons": [{ 112 | "plan": "heroku-postgresql" 113 | }], 114 | "buildpacks": [{ 115 | "url": "heroku-community/apt" 116 | }, 117 | { 118 | "url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git" 119 | }] 120 | } 121 | --------------------------------------------------------------------------------