-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
39 lines (39 loc) · 1019 Bytes
/
manifest.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
{
"$schema": "http://json.schemastore.org/foxx-manifest",
"name": "foxx-service",
"version": "2.3.0",
"author": "Skitsanos",
"main": "src/index.js",
"scripts": {
"setup": "src/setup.js",
"telegram_chat_message": "src/scripts/telegram_chat_message.js"
},
"engines": {
"arangodb": "^3.0.0"
},
"configuration": {
"jwtSecret": {
"type": "string",
"default": "SuperSecretWord"
},
"showExecTime": {
"default": false,
"type": "boolean"
},
"sessionTtl": {
"default": 3600,
"type": "integer",
"description": "The time in seconds since the last update until a session will be considered expired"
},
"googleAnalyticsId": {
"default": "G-Y32FMJEM1W",
"type": "string",
"description": "Google Analytics Measurement ID"
},
"telegramToken": {
"default": "xyz",
"type": "string",
"description": "Telegram bot token, ref: https://core.telegram.org/bots/api#authorizing-your-bot"
}
}
}