File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ services:
24
24
ports :
25
25
- ' 5432:5432'
26
26
graphql-engine :
27
- image : hasura/graphql-engine:v2.2 .0
27
+ image : hasura/graphql-engine:v2.15 .0
28
28
container_name : ' hasura'
29
29
depends_on :
30
30
- ' postgres'
@@ -43,7 +43,7 @@ services:
43
43
- ' traefik.http.routers.hasura.rule=Host(`localhost`) && PathPrefix(`/`)'
44
44
- ' traefik.http.routers.hasura.entrypoints=web'
45
45
auth :
46
- image : nhost/hasura-auth:latest
46
+ image : nhost/hasura-auth:0.15.0
47
47
container_name : ' auth'
48
48
depends_on :
49
49
- postgres
@@ -72,7 +72,7 @@ services:
72
72
- ' traefik.http.routers.auth.middlewares=strip-auth@docker'
73
73
- ' traefik.http.routers.auth.entrypoints=web'
74
74
storage :
75
- image : nhost/hasura-storage:0.2.1
75
+ image : nhost/hasura-storage:0.2.7
76
76
container_name : ' storage'
77
77
depends_on :
78
78
- postgres
Original file line number Diff line number Diff line change
1
+ export default async ( req , res ) => {
2
+ res . status ( 200 ) . send ( `test, ${ req . query . name } !` )
3
+ }
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ const main = async () => {
40
40
cwd : functionsPath ,
41
41
ignore : [
42
42
'**/node_modules/**' , // ignore node_modules directories
43
- '**/_**/ *' , // ignore files inside directories that start with _
43
+ '**/_*/* *' , // ignore files inside directories that start with _
44
44
'**/_*' // ignore files that start with _
45
45
]
46
46
} )
You can’t perform that action at this time.
0 commit comments