-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
29 lines (29 loc) · 858 Bytes
/
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
{
"name": "user-manager",
"repository": "https://github.com/umluizlima/user-manager",
"env": {
"ENV": {
"description": "The environment in which to run the application.",
"value": "prod"
},
"JWT_PRIVATE_KEY": {
"description": "Run `openssl genrsa -out private.pem` and paste the resulting text",
"value": "your-private-rsa-key"
},
"JWT_PUBLIC_KEY": {
"description": "Run `openssl rsa -in private.pem -pubout -out public.pem` and paste the resulting text",
"value": "your-public-rsa-key"
}
},
"addons": [
"cloudamqp:lemur",
"heroku-redis:hobby-dev",
"heroku-postgresql:hobby-dev"
],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}