-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
executable file
·34 lines (34 loc) · 1.06 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
{
"name": "UrlShortener",
"logo": "https://raw.githubusercontent.com/leeveshkamboj/UrlShortener/master/public/favicon.ico",
"description": "Url Shortener made in Node JS with MongoDB Database.",
"keywords": [
"Node JS",
"Javascript",
"Url Shortner",
"Express Server"
],
"repository": "https://github.com/leeveshkamboj/UrlShortener",
"env": {
"DB_URL": {
"description": "Your Mongodb Connection Url. Get it from https://www.mongodb.com/cloud/atlas/register",
"value": ""
},
"SITE_URL": {
"description": "Enter herokuappname.herokuapp.com or your custom domain.",
"value": ""
},
"SITE_KEY": {
"description": "Your Site Key. Get it from https://www.google.com/recaptcha/admin/create",
"required": false
},
"SECRET_KEY": {
"description": "Your Secret Key. Get it from https://www.google.com/recaptcha/admin/create",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}]
}