From: Lorin Hochstein Date: Fri, 6 Feb 2015 02:32:52 +0000 (-0500) Subject: Add readme and pash script for ch05 X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=ae5086ed4c47ed60cb0d960fdff06ce46d4a2296;p=ansiblebook.git Add readme and pash script for ch05 --- diff --git a/ch05/README.md b/ch05/README.md new file mode 100644 index 0000000..291452d --- /dev/null +++ b/ch05/README.md @@ -0,0 +1,3 @@ +There are no playbooks in this chapter. + +You can run the mezzanine-dev.sh script to run Mezzanine in development mode. diff --git a/ch05/mezzanine-dev.sh b/ch05/mezzanine-dev.sh new file mode 100755 index 0000000..9ad0cfe --- /dev/null +++ b/ch05/mezzanine-dev.sh @@ -0,0 +1,8 @@ +#!/bin/bash +virtualenv venv +source venv/bin/activate +pip install mezzanine +mezzanine-project myproject +cd myproject +python manage.py createdb +python manage.py runserver