GitXplorerGitXplorer
d

virtualenvwrapper.django

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
e1b5e0bf483e2763c7f824856000993bbe3c89d2

make django-admin.py more verbose

ddgladkov committed 11 years ago
Unverified
669292b84401721c1526e564e1915d0f68d37d05

fix another typo

ddgladkov committed 11 years ago
Unverified
bb619b68411d842e31f699d831683dada1ba3266

remove distribute requirement as it is now obsolete

ddgladkov committed 11 years ago
Unverified
ecd64307326a0e4a05eaf57d7f9e67d8586a055d

add support for specifying django project template

ddgladkov committed 11 years ago
Unverified
62cfaeadfe775e7d4cb54923fbc7722ead722add

Added tag 0.3 for changeset 08f34e2cf3eb

ddhellmann committed 12 years ago
Unverified
fed6f448db88dc48b5331e69ebb1ca9a57f73b43

Fixed typo in message

CChromablue committed 13 years ago

README

The README file for this repository.

========================== virtualenvwrapper.django

virtualenvwrapper.django is a template plugin for virtualenvwrapper_ to create new Django projects automatically. When used with mkproject, it installs Django into the new virtualenv then runs django-admin.py to create a new project skeleton.

Installation

::

$ pip install virtualenvwrapper.django

Usage

::

$ mkproject -t django my_fancy_new_site site_filename is /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.pyc New python executable in my_fancy_new_site/bin/python Installing distribute...done.

... virtualenv and project directories are created ...

Applying template django Downloading/unpacking django Downloading Django-1.2.4.tar.gz (6.4Mb): 6.4Mb downloaded Running setup.py egg_info for package django

Installing collected packages: django Running setup.py install for django changing mode of build/scripts-2.7/django-admin.py from 644 to 755

  changing mode of /Users/dhellmann/.virtualenvs/my_fancy_new_site/bin/django-admin.py to 755

Successfully installed django Cleaning up...

virtualenvwrapper.django Running "django-admin.py startprojects my_fancy_new_site"

(my_fancy_new_site)$ find . . ./my_fancy_new_site ./my_fancy_new_site/init.py ./my_fancy_new_site/manage.py ./my_fancy_new_site/settings.py ./my_fancy_new_site/urls.py

.. _virtualenvwrapper: https://pypi.python.org/pypi/virtualenvwrapper