summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBruno Wagner <bwagner@thoughtworks.com>2014-09-15 16:27:36 -0300
committerBruno Wagner <bwagner@thoughtworks.com>2014-09-15 16:27:36 -0300
commitf2bb13595d67775e8ea89ea595cdbe8b7db96dd8 (patch)
tree326313cdc776ad2eb8e6f09ca67a5e681918d818 /README.md
parent65a4eb20889ee8a58216979b90bb442453ef68f8 (diff)
Added run instructions of fake to README
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 17 insertions, 1 deletions
diff --git a/README.md b/README.md
index 8139367c..4573bf3f 100644
--- a/README.md
+++ b/README.md
@@ -54,6 +54,22 @@ If you don't have `bower` installed globaly, change the third line to `$ ./node_
## Fake Service
From inside `./fake-service`
```
-$ bundle install
+$ virtualenv .virtualenv
+$ source .virtualenv/bin/activate
+$ pip install -r requirements.txt
+$ ./go
+```
+
+If you want to see random emails on the fake service, run it like this
```
+$ env AUTOLOAD=True ./go
+```
+
+If you want to control the emails you'll see on the fake service, edit the mailset.csv.example file
+and run the following command while the server is running
+```
+$ curl --data-binary @mailset.csv.example http://localhost:4567/control/mailset/csv/load
+```
+
+
And that's it.