Skip to content

Commit f843943

Browse files
authored
Merge branch 'CodeYourFuture:main' into main
2 parents 3b3d530 + f7ed68f commit f843943

4 files changed

Lines changed: 57 additions & 0 deletions

File tree

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: CodeYourFuture
2+
custom: https://codeyourfuture.io/donate
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Validate PR Metadata
2+
on:
3+
pull_request_target:
4+
types:
5+
- labeled
6+
- unlabeled
7+
- opened
8+
- edited
9+
- reopened
10+
11+
jobs:
12+
validate_pr_metadata:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: CodeYourFuture/actions/validate-pr-metadata@main
17+
with:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Coursework
2+
3+
Exercises to practice and solidify your understanding of the Decomposition module of the Software Development Course.

chat-app/README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Write and Deploy Chat Application Frontend and Backend
2+
3+
### Link to the coursework
4+
5+
https://sdc.codeyourfuture.io/decomposition/sprints/2/prep/
6+
7+
You must complete and deploy a chat application. You have two weeks to complete this.
8+
9+
It must support at least the following requirements:
10+
* As a user, I can send add a message to the chat.
11+
* As a user, when I open the chat I see the messages that have been sent by any user.
12+
* As a user, when someone sends a message, it gets added to what I see.
13+
14+
It must also support at least one additional feature.
15+
16+
### Why are we doing this?
17+
18+
Learning about deploying multiple pieces of software that interact.
19+
20+
Designing and implementing working software that users can use.
21+
22+
Exploring and understanding different ways of sending information between a client and server.
23+
24+
### Maximum time in hours
25+
26+
16
27+
28+
### How to submit
29+
30+
* Fork the Module-Decomposition repository
31+
* Develop and deploy your chat app
32+
* Create a pull request back into the original Module-Decomposition repo, including:
33+
* A link to the deployed frontend on the CYF hosting environment
34+
* A link to the deployed backend on the CYF hosting environment

0 commit comments

Comments
 (0)