Skip to content

Commit 4421a3d

Browse files
committed
Add repo skeleton structure
1 parent 8d84f08 commit 4421a3d

File tree

21 files changed

+137
-1
lines changed

21 files changed

+137
-1
lines changed

OPENAPI_EG_DOCS.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
openapi: 3.0.4
2+
info:
3+
title: Sample API
4+
description: Optional multiline or single-line description in [CommonMark](http://commonmark.org/help/) or HTML.
5+
version: 0.1.9
6+
7+
servers:
8+
- url: http://api.example.com/v1
9+
description: Optional server description, e.g. Main (production) server
10+
- url: http://staging-api.example.com
11+
description: Optional server description, e.g. Internal staging server for testing
12+
13+
paths:
14+
/users:
15+
get:
16+
summary: Returns a list of users.
17+
description: Optional extended description in CommonMark or HTML.
18+
responses:
19+
"200": # status code
20+
description: A JSON array of user names
21+
content:
22+
application/json:
23+
schema:
24+
type: array
25+
items:
26+
type: string

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-22041afd0340ce965d47ae6ef1cefeee28c7c493a6346c4f15d667ab976d596c.svg)](https://classroom.github.com/a/QUdQy4ix)
22
# CS3219 Project (PeerPrep) - AY2526S1
3-
## Group: Gxx
3+
## Group: G04
44

55
### Note:
66
- You are required to develop individual microservices within separate folders within this repository.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
### README for collaboration service
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
openapi: 3.0.4
2+
info:
3+
title: Sample API
4+
description: Optional multiline or single-line description in [CommonMark](http://commonmark.org/help/) or HTML.
5+
version: 0.1.9
6+
7+
servers:
8+
- url: http://api.example.com/v1
9+
description: Optional server description, e.g. Main (production) server
10+
- url: http://staging-api.example.com
11+
description: Optional server description, e.g. Internal staging server for testing
12+
13+
paths:
14+
/users:
15+
get:
16+
summary: Returns a list of users.
17+
description: Optional extended description in CommonMark or HTML.
18+
responses:
19+
"200": # status code
20+
description: A JSON array of user names
21+
content:
22+
application/json:
23+
schema:
24+
type: array
25+
items:
26+
type: string
29.3 KB
Loading

backend/collaboration_service/src/.gitkeep

Whitespace-only changes.

backend/docs/diagrams/to_del.png

29.3 KB
Loading

backend/matching_service/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
### README for matching service
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
openapi: 3.0.4
2+
info:
3+
title: Sample API
4+
description: Optional multiline or single-line description in [CommonMark](http://commonmark.org/help/) or HTML.
5+
version: 0.1.9
6+
7+
servers:
8+
- url: http://api.example.com/v1
9+
description: Optional server description, e.g. Main (production) server
10+
- url: http://staging-api.example.com
11+
description: Optional server description, e.g. Internal staging server for testing
12+
13+
paths:
14+
/users:
15+
get:
16+
summary: Returns a list of users.
17+
description: Optional extended description in CommonMark or HTML.
18+
responses:
19+
"200": # status code
20+
description: A JSON array of user names
21+
content:
22+
application/json:
23+
schema:
24+
type: array
25+
items:
26+
type: string
29.3 KB
Loading

0 commit comments

Comments
 (0)