X-Git-Url: https://git.mdrn.pl/fnpdjango.git/blobdiff_plain/5ef0c244216d61308c3b0154186421ddbf801553..bb0871a31eef84a99fb187d37600dde563beeb69:/bin/fnpdjango_bootstrap.sh diff --git a/bin/fnpdjango_bootstrap.sh b/bin/fnpdjango_bootstrap.sh index 0f56953..9b2301b 100755 --- a/bin/fnpdjango_bootstrap.sh +++ b/bin/fnpdjango_bootstrap.sh @@ -1,11 +1,22 @@ #!/bin/bash +# +# Use as: +# +# source <(curl d.nowoczesnapolska.org.pl) +# + PROJECT="$1" # Make it a function, so that it works with `source` start_project() { -DJANGO_REQ='Django>=1.5,<1.6' +DJANGO_REQ='Django>=1.6,<1.7' +DJANGO_ROOT='src' + +PYPI='http://pypi.nowoczesnapolska.org.pl/simple' +PROJECT_TEMPLATE='http://git.nowoczesnapolska.org.pl/?p=fnpdjango.git;a=snapshot;h=project;sf=tgz' + VIRTUALENVWRAPPER_PATHS=" /etc/bash_completion.d/virtualenvwrapper /usr/bin/virtualenvwrapper.sh @@ -48,23 +59,35 @@ fi echo -e "${strong}Creating virtualenv: $PROJECT...${normal}" mkvirtualenv "$PROJECT" echo -e "${strong}Installing Django...${normal}" -pip install "$DJANGO_REQ" +pip install -i "$PYPI" "$DJANGO_REQ" +pip install -i "$PYPI" --pre django-startproject-plus echo -e "${strong}Starting the project...${normal}" -django-admin.py startproject \ - --template http://pypi.nowoczesnapolska.org.pl/bootstrap/project.tar.gz \ +django-startproject.py \ + --template "$PROJECT_TEMPLATE" \ + --name NOTICE \ + --extra_context='{"year": "`date +%Y`"}' \ "$PROJECT" cd "$PROJECT" -chmod +x manage.py -mv "$PROJECT"/localsettings.py.default "$PROJECT"/localsettings.py + +# GitWeb adds a top directory to the snapshot, let's remove it. +if [ ! -e .gitignore ] +then + WRAPPER="`ls`" + mv "$WRAPPER/"* "$WRAPPER/".gitignore . + rmdir "$WRAPPER" +fi + +chmod +x "$DJANGO_ROOT"/manage.py +mv "$DJANGO_ROOT/$PROJECT/localsettings.py.dev" "$DJANGO_ROOT/$PROJECT/localsettings.py" echo -e "${strong}Installing requirements...${normal}" -pip install -r requirements.txt +pip install -i "$PYPI" -r requirements.txt echo -e "${strong}Installing developer requirements...${normal}" -pip install -r requirements-dev.txt +pip install -i "$PYPI" -r requirements-dev.txt echo -e "${strong}Running syncdb...${normal}" -./manage.py syncdb --noinput +"$DJANGO_ROOT"/manage.py syncdb --noinput echo -e "${strong}Starting new git repository...${normal}" git init @@ -76,3 +99,7 @@ echo " * Review fabfile, use fab for deployment." } start_project + +# The following is just for displaying it as a webpage:

source <(curl )

+