From 8f4c4dbc62df08bda736891c436e40e12d0a9df2 Mon Sep 17 00:00:00 2001 From: Ronny Abraham Date: Thu, 9 Feb 2017 05:03:20 +0200 Subject: [PATCH] now creates the project during deploy.bootstrap Changes to be committed: modified: modules/deploy.py --- modules/deploy.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/deploy.py b/modules/deploy.py index ffa72cc..5acd042 100644 --- a/modules/deploy.py +++ b/modules/deploy.py @@ -80,6 +80,10 @@ def bootstrap(): setup_virtualenv() bootstrap_pip() + # create the django project + from django import create_project + create_project() + # # link virtualenv to rootpath/private/virtualenv