-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.json
88 lines (88 loc) · 2.22 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "Longtails",
"description": "A Web3-focused bot chasing longtail strategies.",
"repository": "https://github.com/nftchance/longtails",
"logo": "https://raw.githubusercontent.com/nftchance/longtails/main/static/images/logo.png",
"keywords": [
"django",
"discord",
"web3",
"longtail",
"mev"
],
"image": "heroku/python",
"addons": [
"heroku-postgresql"
],
"env": {
"DJANGO_SETTINGS_MODULE": "longtails.settings",
"MORALIS_API_KEY": {
"description": "Key used to connect to Moralis.",
"value": ""
},
"TWITTER_CONSUMER_API_KEY": {
"description": "Consumer API key of Twitter app.",
"value": ""
},
"TWITTER_CONSUMER_API_SECRET_KEY": {
"description": "Consumer API secret key of Twitter app.",
"value": ""
},
"TWITTER_BEARER_TOKEN": {
"description": "Bearer token used for Twitter app requests.",
"value": ""
},
"TWITTER_ACCESS_TOKEN": {
"description": "Token that enables programatic access.",
"value": ""
},
"TWITTER_SECRET_ACCESS_TOKEN": {
"description": "That that enables secure programatic access..",
"value": ""
},
"DISCORD_GUILD_ID": {
"description": "ID of the Discord Guild used for notification.",
"value": ""
},
"DISCORD_GUILD_NAME": {
"description": "Name of the Discord Guild used to control Longtails.",
"value": ""
},
"DISCORD_CHANNEL_NAME": {
"description": "Channel where Longtail usage logs are shared.",
"value": ""
},
"DISCORD_TOKEN": {
"description": "Discord bot token gained through the Discord Developer Portal.",
"value": ""
},
"DISCORD_APPLICATION_ID": {
"description": "The application id of the bot you created for Longtails.",
"value": ""
},
"FREEMASONS_HOURS_PER_SYNC": {
"description": "Hours between sync of Free Mason collections.",
"value": "12"
},
"PROD": {
"description": "Controls usage of database. (Leave as true.)",
"value": "true"
},
"DISABLE_COLLECTSTATIC": {
"description": "Keeps your server from storing things not needed. (Leave as 1.)",
"value": "1"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python.git"
}
],
"success_url": "/",
"formation": {
"freemason_worker": {
"quantity": 1,
"size": "standard-1x"
}
}
}