You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Playground for [Akka-Streams](http://doc.akka.io/docs/akka-stream-and-http-experimental/1.0-M2/index.html).
4
4
5
-
I dislike the maven directory layout, and prefer Go's simplified path model with tests next to classes. This project modifies build.sbt to search for source files in different places than the default.
5
+
## Setup
6
+
7
+
You'll need a running [RabbitMq](http://www.rabbitmq.com) server. The simplest way is
8
+
to launch a docker container:
9
+
10
+
```
11
+
docker run --name rmq -p 15672:15672 -p 5672:5672 dockerfile/rabbitmq
12
+
```
6
13
7
-
### Distributions
14
+
Then tweak the ```reference.conf``` file to point to your docker host. (I have an
15
+
```/etc/hosts``` entry that points my docker host's ip to the docker alias).
8
16
9
-
To create a distribution via [SBT Native Packager](https://github.com/sbt/sbt-native-packager) use ```universal:packageZipTarball``` or ```universal:stage``` for a simple shell script.
17
+
Finally, create a a queue named ```streams-playground```.
18
+
19
+
## Notes
20
+
21
+
I dislike the maven directory layout, and prefer Go's simplified path model with tests next to classes. This project modifies build.sbt to search for source files in different places than the default.
0 commit comments