File tree 5 files changed +705
-17
lines changed
5 files changed +705
-17
lines changed Original file line number Diff line number Diff line change 1
- PORT=3658
1
+ PORT=3000
Original file line number Diff line number Diff line change
1
+ # See the OWNERS docs: https://go.k8s.io/owners
2
+
3
+ reviewers:
4
+ - mms-gianni
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import dotenv from 'dotenv';
4
4
dotenv . config ( ) ;
5
5
6
6
const app : Express = express ( ) ;
7
- const port : String = process . env . PORT || "3650 " ;
7
+ const port : String = process . env . PORT || "3000 " ;
8
8
9
9
app . get ( '/' , ( req : Request , res : Response ) => {
10
10
res . send ( 'Express + TypeScript Server' ) ;
Original file line number Diff line number Diff line change 6
6
"author" : " Gianni Carafa" ,
7
7
"license" : " MIT" ,
8
8
"scripts" : {
9
+ "install" : " npx tsc" ,
9
10
"build" : " npx tsc" ,
10
11
"start" : " node dist/index.js" ,
11
- "dev" : " concurrently \" npx tsc --watch\" \" nodemon -q dist/index.js\" "
12
+ "dev" : " concurrently \" npx tsc --watch\" \" nodemon -q dist/index.js\" " ,
13
+ "debug" : " concurrently \" npx tsc --watch\" \" nodemon -q dist/index.js\" "
12
14
},
13
15
"dependencies" : {
16
+ "axios" : " ^0.27.2" ,
17
+ "connect-history-api-fallback" : " ^1.6.0" ,
18
+ "debug" : " ^4.3.4" ,
14
19
"dotenv" : " ^16.0.1" ,
15
- "express" : " ^4.18.1"
20
+ "express" : " ^4.18.1" ,
21
+ "kubernetes-client" : " ^9.0.0" ,
22
+ "typescript" : " ^4.6.4"
16
23
},
17
24
"devDependencies" : {
18
25
"@types/express" : " ^4.17.13" ,
19
26
"@types/node" : " ^17.0.34" ,
20
27
"concurrently" : " ^7.2.0" ,
21
- "nodemon" : " ^2.0.16" ,
22
- "typescript" : " ^4.6.4"
28
+ "nodemon" : " ^2.0.16"
23
29
}
24
30
}
You can’t perform that action at this time.
0 commit comments