-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.json
More file actions
63 lines (63 loc) · 2.14 KB
/
Copy pathproject.json
File metadata and controls
63 lines (63 loc) · 2.14 KB
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
{
"name": "linkding",
"implicitDependencies": ["networks", "traefik"],
"targets": {
"create-variables": {
"options": {
"variables": [
{
"name": "LINKDING_DOMAIN",
"description": "Public domain name for linkding.",
"defaultValue": "linkding.${DEFAULT_DOMAIN_SUFFIX}"
},
{
"name": "LINKDING_POSTGRES_SERVER",
"description": "Server where the linkding PostgreSQL database is located."
},
{
"name": "LINKDING_POSTGRES_USER",
"description": "User used to connect to the linkding PostgreSQL database."
},
{
"name": "LINKDING_POSTGRES_PASSWORD",
"description": "Password used to connect to the linkding PostgreSQL database.",
"type": "password"
},
{
"name": "LINKDING_POSTGRES_DATABASE",
"description": "Name of the linkding PostgreSQL database."
},
{
"name": "LINKDING_INITIAL_USER",
"description": "Username of the initial linkding superuser.",
"defaultValue": "admin"
},
{
"name": "LINKDING_INITIAL_PASSWORD",
"description": "Password of the initial linkding superuser.",
"type": "password"
},
{
"name": "LINKDING_SECRET_KEY",
"description": "Django secret key for linkding (kept stable across restarts since the data dir is ephemeral).",
"type": "generated"
},
{
"name": "LINKDING_OAUTH_PROVIDER_DOMAIN",
"description": "Domain of the OIDC provider.",
"defaultValue": "${POCKET_ID_DOMAIN}"
},
{
"name": "LINKDING_OAUTH_CLIENT_ID",
"description": "Client ID for linkding to authenticate against the OIDC provider."
},
{
"name": "LINKDING_OAUTH_CLIENT_SECRET",
"description": "Client secret for linkding to authenticate against the OIDC provider.",
"type": "password"
}
]
}
}
}
}