Skip to content

Commit

Permalink
Conventionalizes and adds Docker integration
Browse files Browse the repository at this point in the history
  • Loading branch information
adriancole committed Oct 8, 2020
1 parent 69a89ad commit 6a500d9
Show file tree
Hide file tree
Showing 23 changed files with 271 additions and 960 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion armeria/.github/CODEOWNERS → .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# https://help.github.com/articles/about-codeowners/

* @adriancole @ikhoon @minwoox @trustin
armeria/ @adriancole @ikhoon @minwoox @trustin
2 changes: 1 addition & 1 deletion .github/workflows/docker-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build-on-linux:
strategy:
matrix:
docker-target: [webmvc25-jetty, webmvc3-jetty, webmvc4-jetty, webmvc4-boot]
docker-target: [armeria, webmvc25-jetty, webmvc3-jetty, webmvc4-boot, webmvc4-jetty]
runs-on: ubuntu-latest
name: Build and verify Docker images
steps:
Expand Down
7 changes: 0 additions & 7 deletions armeria/.gitignore

This file was deleted.

117 changes: 0 additions & 117 deletions armeria/.mvn/wrapper/MavenWrapperDownloader.java

This file was deleted.

Binary file removed armeria/.mvn/wrapper/maven-wrapper.jar
Binary file not shown.
2 changes: 0 additions & 2 deletions armeria/.mvn/wrapper/maven-wrapper.properties

This file was deleted.

201 changes: 0 additions & 201 deletions armeria/LICENSE

This file was deleted.

6 changes: 3 additions & 3 deletions armeria/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ Next, you can view traces that went through the backend via http://localhost:941
* This is a locally run zipkin service which keeps traces in memory

## Starting the Services
In a separate tab or window, start each of [armeria.Frontend](/src/main/java/armeria/Frontend.java) and [armeria.Backend](/src/main/java/armeria/Backend.java):
In a separate tab or window, start each of [Frontend](/brave/example/armeria/Frontend.java) and [Backend](/brave/example/armeria/Backend.java):
```bash
$ ./mvnw compile exec:java -Dexec.mainClass=armeria.Frontend
$ ./mvnw compile exec:java -Dexec.mainClass=armeria.Backend
$ mvn compile exec:java -Dexec.mainClass=brave.example.Frontend
$ mvn compile exec:java -Dexec.mainClass=brave.example.Backend
```

Next, run [Zipkin](http://zipkin.io/), which stores and queries traces reported by the above services.
Expand Down
Loading

0 comments on commit 6a500d9

Please sign in to comment.