forked from Pelellone/instagram-bot.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js.tpl
executable file
·56 lines (52 loc) · 3.03 KB
/
config.js.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module.exports = {
// InstagramBot.js Configs
"debug": true,
"login": true,
// Instagram Account
"instagram_username": "ptkdev", // without @
"instagram_password": "password",
"instagram_hashtag": ["muraleshunter", "like4like", "follow4follow"], //without #
"instagram_pin": "sms", //method to receive pin (email or sms)
// BOT Configs
// [WORK] likemode_classic - select random hashtag from config list and like 1 random photo (of last 20) | 400-600 like/day.
// [WORK] likemode_realistic - select random hashtag from config list, like fast 10-12 photo and sleep 15-20min. Sleep at night
// [WORK] likemode_superlike - select random hashtag from config list and like 3 random photo of same user | 400-600 like/day.
// [WORK] likemode_competitor_users - select account, select random followers, like 10-12 photo and sleep 15-20min.
// [WORK] comment_mode - leave a comment under the photo via hashtag.
// [TODO] fdfmode_classic - follow user from random hashtag and defollow after 1h | 300 follow-defollow/day.
// [TODO] fdfmode_defollowall - defollow all your following (not defollow users in whitelist) | 30 defollow/hour.
"bot_mode": "likemode_classic",
"bot_likeday_min": 400, // work only in likemode_classic
"bot_likeday_max": 600, // work only in likemode_classic. In 2018 limit instagram is descreased to 400-600/day :(
"bot_sleep_night": true, // if you need stop bot in night
"bot_start_sleep": "7:00", // sleep from 00:00 to 7:00 am, work in likemode_realistic, comment_mode, likemode_superlike and likemode_competitor_users
"bot_fastlike_min": "15", // min minutes of sleep after like 10-12 photo, work in likemode_realistic and likemode_superlike (superlike add 3 like/user, set 50min)
"bot_fastlike_max": "20", // max minutes of sleep after like 10-12 photo, work in likemode_realistic and likemode_superlike (superlike add 3 like/user, set 60min)
"bot_superlike_n": 3, // superlike number of likes for user
"bot_followday": 300, // follow-defollow user/day, work in fdfmode_classic and fdfmode_defollowall
"bot_userwhitelist": [""], // usernames without @ | don't defollow this users on follow-defollow mode, work in fdfmode_classic and fdfmode_defollowall
"comment_mode": {
"comments": {
"type": "array",
"source": [],
}
},
"likemode_competitor_users": {
"account": "", // without @
},
// Puppeteer Configs
"chrome_headless": false,
"chrome_options": ["--disable-gpu", "--no-sandbox", "--window-size=1920x1080"],
"executable_path": "", // example for Mac OS: /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome
// LOG
"log": {
"drivers": ["console"], // slack or console
"screenshot": false, // disable or enable screenshot in logs folder
"channels": {
"console": "",
"slack": {
"webhook": ""
}
}
}
};