-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeta.json
61 lines (61 loc) · 2.03 KB
/
deta.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "Form To Email Service",
"description": "Simple and beautiful dashboard to keep your files safe. Note: if you will use your Gmail account you must get your app password from: https://support.google.com/mail/?p=InvalidSecondFactor",
"runtime": "python3.9",
"env": [
{
"key": "ADMIN_USERNAME",
"description": "Username will be used for creating new aliases.",
"value": "7207a43b",
"required": true
},
{
"key": "ADMIN_PASSWORD",
"description": "Password will be used for creating new aliases.",
"value": "7207a43b",
"required": true
},
{
"key": "PRIVATE_SIMPLE_CAPTCHA_API_LINK",
"description": "PrivateSimpleCaptchaApi Service Link. You can leave default value.",
"value": "https://PrivateSimpleCaptchaApi.deta.dev",
"required": true
},
{
"key": "DETA_EVENT_QUEUE_LINK",
"description": "DetaEventQueue Service Link. You can leave default value.",
"value": "https://DetaEventQueue.deta.dev",
"required": true
},
{
"key": "DETA_EVENT_QUEUE_PASSWORD",
"description": "DetaEventQueue password. You can leave default value.",
"value": "demo",
"required": true
},
{
"key": "SENDER_EMAIL_ADDRESS",
"description": "This email address will be used for sending responses of your forms",
"value": "[email protected]",
"required": true
},
{
"key": "SENDER_SMTP_PORT",
"description": "This is the port of your smtp server usually it is 587 (Like email providers such as Gmail)",
"value": "587",
"required": true
},
{
"key": "SENDER_SERVER_ADDRESS",
"description": "Server address of your email provider",
"value": "smtp.gmail.com",
"required": true
},
{
"key": "SENDER_MAIL_PASSWORD",
"description": "Email password or in gmail app password (you can get your app password from https://support.google.com/mail/?p=InvalidSecondFactor)",
"value": "YOUR PASSWORD",
"required": true
}
]
}