File tree Expand file tree Collapse file tree 2 files changed +29
-3
lines changed
frontend/src/components/Questions Expand file tree Collapse file tree 2 files changed +29
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ interface Question {
8
8
title : string ;
9
9
tags : string [ ] ;
10
10
categories : string [ ] ;
11
- constraints : string [ ] ;
11
+ // constraints: string[];
12
12
difficulty : string ;
13
13
//description: string;
14
14
}
@@ -59,7 +59,7 @@ const InterviewQuestionsTable: React.FC = () => {
59
59
< TableCell > Title</ TableCell >
60
60
< TableCell > Tags</ TableCell >
61
61
< TableCell > Categories</ TableCell >
62
- < TableCell > Constraints</ TableCell >
62
+ { /* <TableCell>Constraints</TableCell> */ }
63
63
< TableCell > Difficulty</ TableCell >
64
64
{ /* <TableCell>Description</TableCell> */ }
65
65
</ TableRow >
@@ -70,7 +70,7 @@ const InterviewQuestionsTable: React.FC = () => {
70
70
< TableCell > { question . title } </ TableCell >
71
71
< TableCell > { question . tags . join ( ', ' ) } </ TableCell >
72
72
< TableCell > { question . categories . join ( ', ' ) } </ TableCell >
73
- < TableCell > { question . constraints . join ( ', ' ) } </ TableCell >
73
+ { /* <TableCell>{question.constraints.join(', ')}</TableCell> */ }
74
74
< TableCell > { question . difficulty } </ TableCell >
75
75
{ /* <TableCell>{question.description}</TableCell> */ }
76
76
</ TableRow >
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Function to start an Express service
4
+ start_service () {
5
+ service_name=$1
6
+ command=$2
7
+ echo " Starting $service_name ..."
8
+ (cd $service_name && $command & )
9
+ }
10
+
11
+ # Start all Express backend services
12
+ start_service ApiGatewayService " npm run dev"
13
+ start_service AuthService " npm run dev"
14
+ start_service ChatService " npm run dev"
15
+ start_service MatchingService " npm run dev"
16
+ start_service QuestionService " npm run dev"
17
+ start_service UserService " npm run dev"
18
+
19
+ # Start the frontend service
20
+ start_service frontend " npm start"
21
+
22
+ # Notify user
23
+ echo " All services are now running..."
24
+
25
+ # Wait for all background processes to finish
26
+ wait
You can’t perform that action at this time.
0 commit comments