-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathapp.json
56 lines (55 loc) · 2.24 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
{
"name": "Mattermost Sample",
"description": "Mattermost running on a Heroku dyno",
"repository": "https://github.com/tommyvn/mattermost-heroku",
"keywords": ["mattermost"],
"success_url": "/",
"env": {
"BUILDPACK_URL": "http://github.com/kr/heroku-buildpack-inline.git",
"MATTERMOST_DOWNLOAD_URI": {
"description": "copy-paste the download link to the latest COMPILED version from http://www.mattermost.org/download/ into here",
"required": true,
"value": ""
},
"TEAM_SETTINGS__SITE_NAME": "Mattermost",
"SQL_SETTINGS__AT_REST_ENCRYPT_KEY": {
"description": "SqlSettings AtRestEncryptKey",
"generator": "secret"
},
"FILE_SETTINGS__PUBLIC_LINK_SALT": {
"description": "FileSettings PublicLinkSalt",
"generator": "secret"
},
"FILE_SETTINGS__DRIVER_NAME": {
"description": "FileSettings DriverName - local or amazons3. WARNING: If this isn't amazons3 uploads will disapear at regular intervales as dynos cycle.",
"value": "local"
},
"FILE_SETTINGS__AMAZON_S3_ACCESS_KEY_ID": {
"description": "FileSettings AmazonS3AccessKeyId - WARNING: If this isn't an amazon s3 key uploads will disapear at regular intervales as dynos cycle.",
"required": false,
"value": ""
},
"FILE_SETTINGS__AMAZON_S3_SECRET_ACCESS_KEY": {
"description": "FileSettings AmazonS3SecretAccessKey - WARNING: If this isn't an amazon s3 secret uploads will disapear at regular intervales as dynos cycle.",
"required": false,
"value": ""
},
"FILE_SETTINGS__AMAZON_S3_BUCKET": {
"description": "FileSettings AmazonS3Bucket - WARNING: If this isn't an amazon s3 bucket uploads will disapear at regular intervales as dynos cycle.",
"required": false,
"value": ""
},
"FILE_SETTINGS__AMAZON_S3_REGION": {
"description": "FileSettings AmazonS3Region",
"value": "us-east-1"
},
"EMAIL_SETTINGS__INVITE_SALT": {
"description": "EmailSettings InviteSalt",
"generator": "secret"
},
"EMAIL_SETTINGS__PASSWORD_RESET_SALT": {
"description": "EmailSettings PasswordResetSalt",
"generator": "secret"
}
}
}