forked from matteomenapace/TeamBuildingBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRENAME_MEconfig.js
More file actions
21 lines (21 loc) · 814 Bytes
/
RENAME_MEconfig.js
File metadata and controls
21 lines (21 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports =
{
keys:
{
consumer_key: 'YOUR_TWITTER_APP_CONSUMER_KEY',
consumer_secret: 'YOUR_TWITTER_APP_CONSUMER_SECRET',
access_token_key: 'YOUR_TWITTER_APP_TOKEN_KEY',
access_token_secret: 'YOUR_TWITTER_APP_TOKEN_SECRET'
},
users:
[
'SOME_TWITTER_HANDLE', // eg: 'POTUS' or 'Snowden' (without @ in front)
'CHANGE_THIS',
'AND_THIS',
'YOU_CAN_ADD_AS_MANY_AS_YOU_LIKE'
],
minimumTweetsToFetch: 1000, // if you feed the bot more tweets, it'll have a richer bank of words to generate sentences with (and they will tend to make more sense)
howManySentences: 1, // how many sentences to generate and tweet?
charactersToRemove: ',:;"()[]{}/', // all the characters that you don't want to see in the bot's tweets
testMode: false // if true, the bot will generate but not tweet sentences
}