-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add README instructions to run
- Loading branch information
Showing
16 changed files
with
145 additions
and
14 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
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,19 @@ | ||
# Analyzer example - Kotlin Coroutines version | ||
|
||
To run the example: | ||
|
||
``` | ||
./gradlew :analyzer-direct-kt:run | ||
``` | ||
|
||
In order to run the application you need to place inside the `analyzer-commons` directory a `.env` file containing [your personal GitHub access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens), like: | ||
|
||
```env | ||
GH_TOKEN=.... | ||
``` | ||
|
||
or having set an environment variable named `GH_TOKEN`. | ||
|
||
![Analyzer example](../docs/content/res/img/analyzer-e2e.png) | ||
|
||
Have a look to [the documentation](https://tassiluca.github.io/direct-style-experiments/docs/03-channels/) for more details. |
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,19 @@ | ||
# Analyzer example - Scala Gears version | ||
|
||
To run the example: | ||
|
||
``` | ||
./gradlew :analyzer-direct:run | ||
``` | ||
|
||
In order to run the application you need to place inside the `analyzer-commons` directory a `.env` file containing [your personal GitHub access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens), like: | ||
|
||
```env | ||
GH_TOKEN=.... | ||
``` | ||
|
||
or having set an environment variable named `GH_TOKEN`. | ||
|
||
![Analyzer example](../docs/content/res/img/analyzer-e2e.png) | ||
|
||
Have a look to [the documentation](https://tassiluca.github.io/direct-style-experiments/docs/03-channels/) for more details. |
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,21 @@ | ||
# Analyzer example - monadic `Future` version | ||
|
||
To run the example: | ||
|
||
``` | ||
./gradlew :analyzer-direct:run | ||
``` | ||
|
||
In order to run the application you need to place inside the `analyzer-commons` directory a `.env` file containing [your personal GitHub access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens), like: | ||
|
||
```env | ||
GH_TOKEN=.... | ||
``` | ||
|
||
or having set an environment variable named `GH_TOKEN`. | ||
|
||
![Analyzer example](../docs/content/res/img/analyzer-e2e.png) | ||
|
||
Warning: Incremental retrieval of results from the github api using pagination has not been implemented for this version (the data displayed may therefore be partial) | ||
|
||
Have a look to [the documentation](https://tassiluca.github.io/direct-style-experiments/docs/03-channels/) for more details. |
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,10 @@ | ||
# Blog web service - Kotlin Coroutine version | ||
|
||
For this example just the tests are provided. You can explore them in the `test` folder. | ||
To execute the tests, run: | ||
|
||
``` | ||
./gradlew :blog-ws-direct-kt:test | ||
``` | ||
|
||
Have a look to [the documentation](https://tassiluca.github.io/direct-style-experiments/docs/02-basics/) for more details. |
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,10 @@ | ||
# Blog web service - Scala Gears version | ||
|
||
For this example just the tests are provided. You can explore them in the `test` folder. | ||
To execute the tests, run: | ||
|
||
``` | ||
./gradlew :blog-ws-direct:test | ||
``` | ||
|
||
Have a look to [the documentation](https://tassiluca.github.io/direct-style-experiments/docs/02-basics/) for more details. |
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,10 @@ | ||
# Blog web service - monadic `Future` version | ||
|
||
For this example just the tests are provided. You can explore them in the `test` folder. | ||
To execute the tests, run: | ||
|
||
``` | ||
./gradlew :blog-ws-monadic:test | ||
``` | ||
|
||
Have a look to [the documentation](https://tassiluca.github.io/direct-style-experiments/docs/02-basics/) for more details. |
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
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,14 @@ | ||
# Smart hub example - Kotlin Coroutines version | ||
|
||
To run the example: | ||
|
||
``` | ||
./gradlew :smart-hub-direct-kt:run | ||
``` | ||
|
||
Three panels should pop up, one for each sensor type, and a dashboard showing the state of the system. | ||
Entering some value in the panels and pressing the "Send" button, after 10 seconds (the configured sampling window), the system should react to the data received, updating the dashboard with the new state. | ||
|
||
![Smart hub example](../docs/content/res/img/smart-hub.png) | ||
|
||
Have a look to [the documentation](https://tassiluca.github.io/direct-style-experiments/docs/04-rears/) for more details. |
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,14 @@ | ||
# Smart hub example - Scala Gears version | ||
|
||
To run the example: | ||
|
||
``` | ||
./gradlew :smart-hub-direct:run | ||
``` | ||
|
||
Three panels should pop up, one for each sensor type, and a dashboard showing the state of the system. | ||
Entering some value in the panels and pressing the "Send" button, after 10 seconds (the configured sampling window), the system should react to the data received, updating the dashboard with the new state. | ||
|
||
![Smart hub example](../docs/content/res/img/smart-hub.png) | ||
|
||
Have a look to [the documentation](https://tassiluca.github.io/direct-style-experiments/docs/04-rears/) for more details. |
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