forked from consumet/api.consumet.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
26 lines (26 loc) · 1.09 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
{
"name": "Consumet API",
"description": "A Modern Search Engine API for Anime, Movies, Books, etc.",
"website": "https://consumet.org",
"repository": "https://github.com/consumet/consumet-api",
"logo": "https://consumet.org/images/consumetlogo.png",
"keywords": ["node", "fastify", "mongodb", "anime", "movies", "books", "manga", "api"],
"env": {
"PORT": {
"description": "Set PORT for the fastify application to run on.",
"value": "3000"
},
"REDIS_HOST": {
"description": "Set redis host, you can create a redis instance on your own or use upstash (https://upstash.com) its for free.",
"value": ""
},
"REDIS_PASS": {
"description": "Set redis password, you can create a redis instance on your own or use upstash (https://upstash.com) its for free.",
"value": ""
},
"REDIS_PORT": {
"description": "Set redis port, you can create a redis instance on your own or use upstash (https://upstash.com) its for free.",
"value": ""
}
}
}