-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
84 lines (81 loc) · 2.17 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": "WebShot",
"description": "Self-hosted web page screenshot service",
"repository": "https://github.com/bots-house/webshot",
"logo": "https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/apple/285/camera-with-flash_1f4f8.png",
"keywords": [
"golang",
"chrome",
"chrome-headless",
"screenshot",
"api"
],
"website": "https://webshot.bots.house",
"success_url": "/",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-google-chrome"
},
{
"url": "https://github.com/heroku/heroku-buildpack-go"
}
],
"env": {
"AUTH_SIGN_KEY": {
"description": "HMAC request signature secret key, provide it if you need auth",
"required": false
},
"BROWSER_ADDR": {
"description": "Remote browser connection string, provide it if you want use remote browser for rendering. Allowed is ws://... or http://",
"required": false
},
"STORAGE_S3_KEY": {
"description": "S3 Access Key, provide it and other STORAGE_S3_* keys if you need caching",
"required": false
},
"STORAGE_S3_SECRET": {
"description": "S3 Secret Key",
"required": false
},
"STORAGE_S3_REGION": {
"description": "S3 Region",
"required": false
},
"STORAGE_S3_BUCKET": {
"description": "S3 Bucket",
"required": false
},
"STORAGE_S3_ENDPOINT": {
"description": "S3 Endpoint",
"required": false
},
"STORAGE_S3_SUBDIR": {
"description": "S3 Subdir e.g. /webshot",
"required": false
},
"LOG_DEBUG": {
"description": "Enable debug logs",
"value": "true",
"required": false
},
"LOG_PRETTY": {
"description": "Enable pretty logs",
"value": "true",
"required": false
},
"SENTRY_DSN": {
"description": "Sentry DSN for errors tracking",
"required": false
},
"SENTRY_ENV": {
"description": "Sentry environment",
"value": "production",
"required": false
},
"SENTRY_TRACES_SAMPLE_RATE": {
"description": "Sentry traces rate, keep it lower on production",
"value": "0.1",
"required": false
}
}
}