From 47fda303dac0553f8dc98ef407c6cca44db4181a Mon Sep 17 00:00:00 2001 From: Dorian Pula Date: Wed, 26 Oct 2016 08:53:31 -0400 Subject: [PATCH] Fix demo task, which is useful for manual tests. --- Rotefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Rotefile b/Rotefile index d50732e..2a4fd6c 100644 --- a/Rotefile +++ b/Rotefile @@ -35,8 +35,9 @@ end) --end) desc("Demos Rookeries in a browser") -task ("demo", {"start"}, function () - exec("python", "-m", "webbrowser", "-n", "http://localhost:5000/") +task ("demo", function () + exec("docker-compose", "up", "-d", "--remove-orphans") + exec("python", "-m", "webbrowser", "-n", "http://localhost:3000/") end) desc("Starts Rookeries")