Re: django+virtualenv+git(hub)

2013-04-01 Thread +Emmanuel
Here's a link to a setup I found useful and have been using since then: http://www.jeffknupp.com/blog/2012/10/24/starting-a-django-14-project-the-right-way/ On Saturday, March 30, 2013 10:56:37 AM UTC+3, Martin wrote: > > Hi list, > > I'm a Django newbie and have been reading of usefulness of usi

Re: django+virtualenv+git(hub)

2013-03-30 Thread Andrey Yanov
1. You included pyc twice. 2. I don't see a need to add all subfolders. I've used to name virtual env's the same for each project, so you just add the it's name to gitignore. Since my virtual env folder lives inside project folder they are not mixed up. This way you don't make your .gitignore f

Re: django+virtualenv+git(hub)

2013-03-30 Thread Pankaj Singh
Hey, I would recommend using virtualenvwrapper to manage virtual environments for different projects. [http://virtualenvwrapper.readthedocs.org/en/latest/] Once you have virtualenvwrapper installed, you can create virtualenv for new projects using $ mkvirtualenv .. and you can activate this vi

django+virtualenv+git(hub)

2013-03-30 Thread John
Hi list, I'm a Django newbie and have been reading of usefulness of using it with virtualenv+git. I'm not clear however how to set it up in terms of structure/hierarchy. Say I've got my ~/projects/django-projects where I want to create my projects so I'd initialise git inside ~/projects/django-pr