-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
74 lines (74 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"description": "pREST is a fast RESTful server that gives you ⚡ instant, realtime, high-performance on any Postgres application, existing or new.",
"env": {
"PREST_AUTH_ENABLED": {
"description": "Activates or deactivates token generation endpoint support",
"value": "false"
},
"PREST_AUTH_ENCRYPT": {
"description": "Type of encryption used in password field, support for MD5 and SHA1",
"value": "MD5"
},
"PREST_AUTH_PASSWORD": {
"description": "Password field that will be consulted",
"value": "password"
},
"PREST_AUTH_TABLE": {
"description": "Table name we will consult (query)",
"value": "prest_users"
},
"PREST_AUTH_TYPE": {
"description": "Type that will receive the login, support for body and http basic authentication",
"value": "body"
},
"PREST_AUTH_USERNAME": {
"description": "User field that will be consulted - if your software uses email just abstract name username (at pREST code level it was necessary to define an internal standard)",
"value": "username"
},
"PREST_DEBUG": {
"description": "Activates or deactivates debug mode",
"value": "true"
},
"PREST_JWT_ALGO": {
"description": "JWT sigin algorithm.",
"value": "HS256"
},
"PREST_JWT_DEFAULT": {
"description": "Activates or deactivates JSON Web Tokens (JWT) authentication",
"value": "false"
},
"PREST_JWT_KEY": {
"description": "JWT authorization key.",
"value": ""
},
"PREST_JWT_WHITELIST": {
"description": "Serves to configure which endpoints will not ask for jwt token",
"value": "/auth"
}
},
"formation": {
"web": {
"quantity": 1
}
},
"keywords": [
"database",
"api",
"rest",
"restful",
"heroku",
"postgres",
"prest"
],
"logo": "https://docs.postgres.rest/logo.png",
"name": "pREST",
"repository": "https://github.com/prest/heroku",
"stack": "container",
"success_url": "/databases",
"website": "https://github.com/prest/prest"
}