-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
37 lines (37 loc) · 1.58 KB
/
app.json
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
{
"name": "twitter-socket.io-adapter",
"description": "A microservice which translates Twitter's new WebHook-based Account Activity API into a Socket.IO-based one.",
"repository": "https://github.com/gamesdonequick/twitter-websocket-adapter",
"keywords": ["node", "express", "api", "webhook", "twitter", "websocket"],
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
}
},
"env": {
"SECRET_KEY": {
"description": "A secret key, used as a pre-shared key to authenticate clients.",
"generator": "secret"
},
"TWITTER_ACCESS_TOKEN": {
"description": "Your Twitter app's access token. Get this from the \"Keys and Access Tokens\" tab of your app on https://apps.twitter.com/"
},
"TWITTER_ACCESS_TOKEN_SECRET": {
"description": "Your Twitter app's access token secret. Get this from the \"Keys and Access Tokens\" tab of your app on https://apps.twitter.com/"
},
"TWITTER_CONSUMER_KEY": {
"description": "Your Twitter app's consumer key. Get this from the \"Keys and Access Tokens\" tab of your app on https://apps.twitter.com/"
},
"TWITTER_CONSUMER_SECRET": {
"description": "Your Twitter app's consumer secret. Get this from the \"Keys and Access Tokens\" tab of your app on https://apps.twitter.com/"
},
"TWITTER_API_ENV": {
"description": "An Account Activity API environment name from https://developer.twitter.com/en/account/environments/"
},
"SENTRY_DSN": {
"description": "Your Sentry.io project DSN, used for error reporting and tracking.",
"required": false
}
}
}