-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💝 Event receiver & stream via Server-Sent Events (#11)
* Events endpoint PoC * Workaround for quarkusio/quarkus#31587 and cloudevents/sdk-java#533 * Better workaround, thx @pierDipi for quarkusio/quarkus#31587 and cloudevents/sdk-java#533 * Development data * Proper streaming of events SSE * Frontend in React PoC * Event stream using u-cloudevents * Quarkus backend uses the React frontend * Express app uses the React frontend * Tests for Express's event receiver * GH Actions Testing * Container build fix * Remove pre-build Containerfiles * Self-review fixes * Tests for Quarkus event receiver * README format and npm install instructions
- Loading branch information
Showing
142 changed files
with
20,062 additions
and
1,520 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
**/node_modules | ||
**/deployment | ||
**/target/** | ||
!**/target/*-runner | ||
!**/target/quarkus-app/** | ||
**/.idea/** | ||
**/*.iml | ||
**/.mvn/wrapper/maven-wrapper.jar | ||
**/.git-versioned-pom.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
default: expressjs quarkus | ||
|
||
frontend: | ||
+$(MAKE) -C frontend | ||
|
||
frontend.clean: | ||
+$(MAKE) -C frontend clean | ||
|
||
expressjs: | ||
+$(MAKE) -C expressjs | ||
|
||
expressjs.clean: | ||
+$(MAKE) -C expressjs clean | ||
|
||
quarkus: | ||
+$(MAKE) -C quarkus | ||
|
||
quarkus.clean: | ||
+$(MAKE) -C quarkus clean | ||
|
||
clean: frontend.clean expressjs.clean quarkus.clean | ||
|
||
.PHONY: default frontend expressjs quarkus clean frontend.clean expressjs.clean quarkus.clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
node_modules/ | ||
.git | ||
deployment/ | ||
test/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
build/ | ||
public/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules/ | ||
build/ | ||
public/ | ||
npm-debug.log |
Oops, something went wrong.