Fix demo task, which is useful for manual tests.

This commit is contained in:
Dorian 2016-10-26 08:53:31 -04:00
parent 3cb28e6977
commit 47fda303da
1 changed files with 3 additions and 2 deletions

View File

@ -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")