-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
36 lines (36 loc) · 1.04 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
{
"name": "Docsie MS Auth",
"description": "Microsoft Entra ID authentication for Docsie Secure Portals",
"repository": "https://github.com/LikaloLLC/secure-deployment-portal",
"keywords": ["python", "flask", "microsoft", "authentication"],
"env": {
"SECRET_KEY": {
"description": "A secret key for Flask sessions",
"generator": "secret"
},
"AZURE_AD_CLIENT_ID": {
"description": "Your Microsoft Entra Application (client) ID"
},
"AZURE_AD_CLIENT_SECRET": {
"description": "Your Microsoft Entra client secret"
},
"AZURE_AD_AUTHORITY": {
"description": "Your Microsoft Entra authority URL (https://login.microsoftonline.com/<TENANT_GUID>)"
},
"AZURE_AD_REDIRECT_URI": {
"description": "Your application's redirect URI"
},
"DOCSIE_PORTAL_MASTER_KEY": {
"description": "Master key for portal deployment"
},
"DOCSIE_PORTAL_URL": {
"description": "URL of your portal"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "eco"
}
}
}