-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
34 lines (34 loc) · 1.35 KB
/
app.json
File metadata and controls
34 lines (34 loc) · 1.35 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
{
"name": "Tipoff",
"description": "An open source front-end monitoring platform",
"repository": "https://github.com/tanha-p/tipoff",
"logo": "https://www.tipoff.dev/logo.png",
"keywords": ["tipoff","node","mern","react", "express","productivity","open-source"],
"env": {
"JWT_SECRET_KEY": {
"description": "A secret key used to encrypt the passwords",
"required": true,
"value": ""
},
"MONGODB_URI": {
"description": "URL of the mongoDB database connection to store the Tips. If you don't already have mongoDB, you can get it for free at https://www.mongodb.com/cloud/atlas ",
"required": true,
"value": ""
},
"NODE_ENV": {
"description": "Environment variable for node",
"required": true,
"value": "production"
},
"NOTIFIER_API_KEY_SENDGRID": {
"description": "SendGrid API key to send emails. Key can be generated using a free plan here https://sendgrid.com/pricing/",
"required": true,
"value": ""
},
"NOTIFIER_FROM_EMAIL_SENDGRID": {
"description": "'from' email address that is *verified* on SendGrid and can be used to send Tip email notifications",
"required": true,
"value": ""
}
}
}