-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
30 lines (30 loc) · 904 Bytes
/
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
{
"name": "Invana Engine",
"description": "GraphQL APIs for Apache TinkerPop supported graph databases.",
"repository": "https://github.com/invanalabs/invana-engine",
"website": "https://invana.io",
"logo": "https://avatars3.githubusercontent.com/u/26816714?s=200&v=4",
"success_url": "/graphql",
"keywords": [
"invana-engine",
"apache tinkerpop",
"graphql",
"graph databases"
],
"stack": "container",
"env": {
"GREMLIN_SERVER_URL": {
"description": "Gremlin server url. ex: ws://127.0.0.1:8182/gremlin",
"required": true
},
"GREMLIN_SERVER_USER_NAME": {
"description": "username to authenticate gremlin server"
},
"GREMLIN_SERVER_PASSWORD": {
"description": "password to authenticate gremlin server"
},
"GREMLIN_SERVER_ACCESS_TOKEN": {
"description": "access token to authenticate gremlin server"
}
}
}