Skip to content

Commit

Permalink
2.0 Beta Release
Browse files Browse the repository at this point in the history
  • Loading branch information
darkalphaxteam authored Oct 23, 2023
1 parent c97f1fe commit cc2eec9
Show file tree
Hide file tree
Showing 36 changed files with 171 additions and 0 deletions.
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
worker: npm start
57 changes: 57 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "CYBER-X 2.0",
"description": "ᴄʏʙᴇʀ-x ᴡʜᴀᴛꜱᴀᴘᴘ ʙᴏᴛ",
"repository": "https://github.com/darkalphaxteam/CYBER-X-WHATSAPP-BOT",
"logo": "https://telegra.ph/file/71c859102f3625d06204b.jpg",
"keywords": [
"nodejs",
"Bot",
"WhatsApp Bot",
"WhatsApp Automation",
"Multi Device"
],
"env": {
"SESSION_ID": {

This comment has been minimized.

Copy link
@iykghbj

iykghbj Feb 15, 2024

cyber-x@;;;9ItH0bhY#Ij_j99mSkknQtVlW_Dlb5PXa5ZKpXVObdhlfiI7j-9s

"description": "Type the Session-ID you got from scaning QR",
"required": true,
"value": ""
},
"DATABASE_URL": {
"description": "Enter a PostgresSQL Database's External Url",
"required": true,
"value": ""
},
"HEROKU_API_KEY": {
"description": "Enter your Heroku account Api key",
"required": true,
"value": ""
},
"HEROKU_APP_NAME": {
"description": "Enter you pushed app Name",
"required": true,
"value": ""
},
"WORK_TYPE": {
"description": "Add the worktype of the Bot ( private ,public , onlygroup )",
"required": true,
"value": "private"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "https://github.com/clhuang/heroku-buildpack-webp-binaries.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}
20 changes: 20 additions & 0 deletions command.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
var commands = [];

function cmd(info, func) {
var data = info;
data.function = func;
if (!data.dontAddCommandList) data.dontAddCommandList = false;
if (!info.desc) info.desc = '';
if (!data.fromMe) data.fromMe = false;
if (!info.category) data.category = 'misc';
if(!info.filename) data.filename = "Not Provided";
commands.push(data);
return data;
}
module.exports = {
cmd,
AddCommand:cmd,
Function:cmd,
Module:cmd,
commands,
};
1 change: 1 addition & 0 deletions config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions index.js

Large diffs are not rendered by default.

61 changes: 61 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"name": "CYBER-X",
"version": "2.0.0",
"description": "A simple and easy-to-use WhatsApp bot project based on Multi-Device Baileys and written in JavaScript",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "pm2 start index.js --deep-monitoring --attach --name wabot",
"stop": "pm2 stop wabot",
"restart": "pm2 restart wabot"
},
"dependencies": {
"@whiskeysockets/baileys": "git+https://github.com/darkalphaxteam/Baileys-New.git",
"@adiwajshing/keyed-db": "^0.2.4",
"@bochilteam/scraper-images" : "^1.0.2",
"@blackamda/telegram-image-url" : "^1.0.0",
"@sl-code-lords/si-subdl" : "^1.1.1",
"@sl-code-lords/youtube-dl" : "^1.0.4",
"@sl-code-lords/wabetainfo" : "^1.2.0",
"@sl-code-lords/movie-dl" : "^1.0.3",
"@sl-code-lords/openai-chatgpt" : "^1.0.2",
"aptoide-scraper" : "^1.0.1",
"link-preview-js": "^3.0.4",
"heroku-client" : "^3.1.0",
"pino": "^7.0.5",
"pm2": "^5.2.0",
"util": "^0.12.4",
"express": "latest",
"axios": "^1.2.5",
"os" : "^0.1.2",
"pretty-ms" : "^8.0.0",
"systeminformation" : "^5.21.11",
"fluent-ffmpeg" : "^2.1.2",
"file_size_url": "^1.0.4",
"file-type": "^16.5.3",
"cheerio": "^1.0.0-rc.12",
"child_process" : "^1.0.2",
"@bochilteam/scraper": "^4.0.22-alpha.0",
"fs-extra": "^11.1.0",
"api-dylux": "latest",
"mfiredlcore-vihangayt": "^1.0.0",
"mumaker" : "^2.0.0",
"path": "^0.12.7",
"youtubedl-core": "^4.11.4",
"node-fetch": "^2.6.1",
"megajs": "^1.1.0",
"vm": "^0.1.0",
"wabetainfo": "^1.1.0",
"caliph-api": "^1.0.0",
"chatgpt-scraper" : "^1.0.1",
"getscreenshot.js" : "^1.0.0",
"tech-news-scraper" : "^1.0.0",
"ios-news" : "^1.0.0",
"qrcode-terminal": "^0.12.0",
"wa-sticker-formatter" : "^4.4.4",
"nima-google-now" :"^1.0.1",
"pornhub.js" : "^1.5.1",
"openai" : "^3.2.1",
"postgres_dbm" : "^1.1.0"
}
}
1 change: 1 addition & 0 deletions plugins/apk.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions plugins/bio.js

Large diffs are not rendered by default.

Loading

3 comments on commit cc2eec9

@iykghbj
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.menu

@iykghbj
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi

@iykghbj
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cyber-x@;;;9ItH0bhY#Ij_j99mSkknQtVlW_Dlb5PXa5ZKpXVObdhlfiI7j-9s

Please sign in to comment.