forked from rustyio/super-imap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
23 lines (23 loc) · 702 Bytes
/
app.json
File metadata and controls
23 lines (23 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "SuperIMAP",
"description": "Monitor inboxes for incoming email, at scale.",
"repository": "https://github.com/rustyio/super-imap",
"keywords": ["IMAP", "mail", "webhook", "client", "ruby"],
"success_url": "/admin",
"scripts": {
"postdeploy": "bundle exec rake db:seed"
},
"addons": [
"heroku-postgresql"
],
"env": {
"ENCRYPTION_KEY": {
"description": "Used to encrypt information in the database.",
"generator": "secret"
},
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
}
}
}