File tree Expand file tree Collapse file tree 3 files changed +54
-2
lines changed Expand file tree Collapse file tree 3 files changed +54
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+
7
+ jobs :
8
+ build_and_test :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v3
12
+ - run : cargo test
13
+ - name : Build Docker image
14
+ run : docker build -t terminusdb-change-request-api .
15
+
16
+ build-and-push-image :
17
+ runs-on : ubuntu-latest
18
+ needs : [clippy_and_format, build_and_test]
19
+ if : startsWith(github.ref, 'refs/tags/v')
20
+ env :
21
+ IMAGE_NAME : terminusdb/terminusdb-change-request-api
22
+
23
+ steps :
24
+ - name : Checkout repository
25
+ uses : actions/checkout@v3
26
+
27
+ - name : Log in to the Container registry
28
+ uses : docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
29
+ with :
30
+ username : terminusdb
31
+ password : ${{ secrets.DOCKER_PASS }}
32
+
33
+ - name : Extract metadata (tags, labels) for Docker
34
+ id : meta
35
+ uses : docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
36
+ with :
37
+ images : ${{ env.IMAGE_NAME }}
38
+
39
+ - name : Build and push Docker image
40
+ uses : docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
41
+ with :
42
+ context : .
43
+ push : true
44
+ tags : ${{ steps.meta.outputs.tags }}
45
+ labels : ${{ steps.meta.outputs.labels }}
Original file line number Diff line number Diff line change
1
+ FROM node:18
2
+
3
+ WORKDIR /app/
4
+ COPY . /app/
5
+ RUN npm i --legacy-peer-deps && \
6
+ npm run build
7
+ CMD ["npm" , "start" ]
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ dotenv.config({ path: __dirname+'/../.env' });
25
25
26
26
app . use ( '/:prefix/api' ,
27
27
createProxyMiddleware ( {
28
- target : process . env . SERVER_ENDPOINT ,
28
+ target : process . env . SERVER_ENDPOINT || "http://localhost:6363" ,
29
29
changeOrigin : false ,
30
30
// onProxyRes: onProxyRes,
31
31
pathRewrite : {
@@ -73,4 +73,4 @@ console.log(
73
73
"OpenAPI documentation available in http://localhost:3035/api-documentation"
74
74
) ;
75
75
76
- //module.exports = app;
76
+ //module.exports = app;
You can’t perform that action at this time.
0 commit comments