-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
84 lines (84 loc) · 1.87 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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "Sauron",
"description": "Monitor changes in Whois, DNS systems.",
"keywords": [
"dns",
"whois",
"github",
"gist",
"bitbucket",
"snippet"
],
"website": "https://github.com/Snaver/Sauron",
"repository": "https://github.com/Snaver/Sauron",
"scripts": {
"postdeploy": "php artisan migrate --seed"
},
"env": {
"APP_KEY": {
"description": "php artisan key:generate",
"generator": "secret"
},
"APP_LOG": {
"description": "https://devcenter.heroku.com/articles/php-logging#laravel",
"value": "errorlog"
},
"DB_CONNECTION": {
"description": "https://elements.heroku.com/addons/heroku-postgresql",
"value": "pgsql"
},
"QUEUE_DRIVER": {
"description": "https://laravel.com/docs/5.3/queues#introduction",
"value": "database"
},
"SAURON_EMAIL": {
"required": true,
"description": "Change contact email",
"value": ""
},
"SAURON_JSONWHOISAPI_APIChange contact email_KEY": {
"required": true,
"description": "https://jsonwhoisapi.com/register",
"value": ""
},
"SAURON_JSONWHOISAPI_CUSTOMER_ID": {
"required": true,
"description": "https://jsonwhoisapi.com/profile#profile",
"value": ""
},
"GITHUB_TOKEN": {
"required": false,
"description": "https://github.com/settings/tokens",
"value": ""
},
"SAURON_GITHUB_GIST_ID": {
"required": false,
"description": "https://gist.github.com/",
"value": ""
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
},
"image": "heroku/php",
"addons": [
{
"plan": "scheduler:standard"
},
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"buildpacks": [
{
"url": "heroku/php"
}
]
}