mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-24 21:13:18 +00:00
* Add package.json and app.json * Add yarn engine * Remove extra build command * Force install dev deps * Add deploy button and update readme
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "Darkwire",
|
|
"description": "End-to-end encrypted web chat",
|
|
"keywords": [
|
|
"cryptography",
|
|
"chat",
|
|
"privacy"
|
|
],
|
|
"website": "https://darkwire.io",
|
|
"repository": "https://github.com/darkwire/darkwire.io",
|
|
"env": {
|
|
"MAILGUN_API_KEY": {
|
|
"description": "Mailgun API Key (only required for abuse reporting)",
|
|
"required": false
|
|
},
|
|
"ABUSE_TO_EMAIL_ADDRESS": {
|
|
"description": "Where to send abuse reports (only required for abuse reporting)",
|
|
"required": false
|
|
},
|
|
"MAILGUN_DOMAIN": {
|
|
"description": "Mailgun domain (only required for abuse reporting)",
|
|
"required": false
|
|
},
|
|
"ABUSE_FROM_EMAIL_ADDRESS": {
|
|
"description": "From address on abuse emails (only required for abuse reporting)",
|
|
"required": false
|
|
},
|
|
"API_HOST": {
|
|
"description": "Example: 'api.your-darkwire-api.com'",
|
|
"required": false
|
|
},
|
|
"API_PROTOCOL": {
|
|
"description": "Example: 'https'",
|
|
"required": false,
|
|
"value": "https"
|
|
},
|
|
"API_PORT": {
|
|
"description": "Example: 443",
|
|
"required": false,
|
|
"value": "443"
|
|
}
|
|
},
|
|
"image": "heroku/nodejs",
|
|
"addons": [
|
|
"heroku-redis"
|
|
]
|
|
} |