-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
45 lines (45 loc) · 1.4 KB
/
app.json
File metadata and controls
45 lines (45 loc) · 1.4 KB
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
{
"name": "PhaxMachine",
"description": "",
"keywords": ["fax", "email", "phaxio", "mailgun"],
"addons": [],
"env": {
"PHAXIO_API_KEY": {
"description": "Your Phaxio API Key",
"required": true
},
"PHAXIO_API_SECRET": {
"description": "Your Phaxio API Secret",
"required": true
},
"PHAXIO_CALLBACK_TOKEN": {
"description": "Your Phaxio Callback token (found in your Phaxio Webhook settings)",
"required": true
},
"SMTP_USER": {
"description": "Mailgun's SMTP username for emailing capabilities",
"required": true
},
"SMTP_PASSWORD": {
"description": "Mailgun's SMTP password for emailing capabilities",
"required": true
},
"FROM_EMAIL": {
"description": "The From address for any outgoing email. Ensure this is a valid email address.",
"required": true
},
"ADMIN_EMAIL": {
"description": "The email address used by the Administrator to log in.",
"required": true
},
"DOMAIN_URL": {
"description": "The domain this application will be deployed to. If you're not using a custom domain this will be 'https://YOURAPPNAMEHERE.herokuapp.com'.",
"required": true
}
},
"repository": "https://github.com/mwmayerle/new_phax_machine",
"logo": "https://avatars3.githubusercontent.com/u/929026?v=2&s=200",
"scripts": {
"postdeploy": "rails db:migrate && rails db:seed"
}
}