https://github.com/d-led/hello_vlingo
trying out the vlingo platform
https://github.com/d-led/hello_vlingo
Last synced: 11 months ago
JSON representation
trying out the vlingo platform
- Host: GitHub
- URL: https://github.com/d-led/hello_vlingo
- Owner: d-led
- License: unlicense
- Created: 2018-05-13T09:46:38.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-28T13:19:15.000Z (over 4 years ago)
- Last Synced: 2025-04-11T23:40:39.333Z (about 1 year ago)
- Language: Java
- Size: 230 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello Vlingo
> checking out the [Vlingo Actor Model](https://github.com/vlingo/vlingo-actors) platform
[](https://travis-ci.com/d-led/hello_vlingo)
```bash
gradle run
```
or
```bash
mvn clean compile exec:exec
```
or
```bash
gradle shadowJar && java -jar build/libs/hello_vlingo.jar
```
## Structure
- [main: App](src/main/java/github/dled/demo/App.java)
- [protocol/interface: Greeter](src/main/java/github/dled/demo/Greeter.java)
- [implementation: ConsoleGreeter](src/main/java/github/dled/demo/ConsoleGreeter.java)
- the proxy class is generated upon first run at: [`target/.../Greeter__Proxy.java`](target/generated-sources/github/dled/demo/Greeter__Proxy.java)
## Dependencies
- [vlingo-actors](https://github.com/vlingo/vlingo-actors) MPL-2.0
- [humanize](https://github.com/mfornos/humanize) Apache-2.0
- more: [build.gradle](build.gradle)