-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
55 lines (55 loc) · 1.47 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
{
"name": "Sendy on Heroku",
"description": "Deploy Sendy dynamically on Heroku.",
"buildpacks": [
{ "url": "heroku/php" }
],
"addons": [
{
"plan": "jawsdb:kitefin"
},
{
"plan": "scheduler:standard"
}
],
"env": {
"SENDY_LICENSE_CODE": {
"description": "Your Sendy license code.",
"required": true
},
"APP_PATH": {
"description": "Application URL. eg: sendy.example.com",
"required": true
},
"S3_ACCESS_KEY_ID": {
"description": "AWS S3-compatible storage access key. Please only use S3 providers that allow public file access.",
"required": true
},
"S3_SECRET_ACCESS_KEY": {
"description": "AWS S3-compatible storage secret access key.",
"required": true
},
"S3_REGION": {
"description": "The region for your S3-compatible storage. eg: eu-central-1. For r2 eg: weur, wnam etc.",
"required": true
},
"S3_BUCKET_NAME": {
"description": "AWS S3-compatible storage bucket name.",
"required": true
},
"S3_PROVIDER": {
"description": "Set your S3 compatible provider. Default is aws. For Cloudflare r2, set value as: r2",
"required": true,
"value":"aws"
},
"S3_ENDPOINT": {
"description": "The endpoint URL for AWS S3-compatible storage (e.g., Cloudflare R2). Defaults to `https://s3.amazonaws.com` if not set.",
"required": false,
"value":""
},
"S3_CDN_URL": {
"description": "If you have a Public URL or CDN URL please enter. Can be left empty for AWS S3. For r2, please enter your Public URL.",
"required": false
}
}
}