diff options
author | Bruno Wagner <bwagner@thoughtworks.com> | 2014-09-15 16:27:36 -0300 |
---|---|---|
committer | Bruno Wagner <bwagner@thoughtworks.com> | 2014-09-15 16:27:36 -0300 |
commit | f2bb13595d67775e8ea89ea595cdbe8b7db96dd8 (patch) | |
tree | 326313cdc776ad2eb8e6f09ca67a5e681918d818 | |
parent | 65a4eb20889ee8a58216979b90bb442453ef68f8 (diff) |
Added run instructions of fake to README
-rw-r--r-- | README.md | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -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. |