Re: Team project via Git repo

2015-11-09 Thread Ralph Castain
The primary issue was that I naively placed all the code in the same location as the virtual environment. I subsequently wound up slurping the environment code into the repo, which broke as soon as it was transitioned to a new location. The “secret” was to put the code in a separate location fr

Re: Team project via Git repo

2015-11-09 Thread m1chael
What ended up solving your issue, Ralph? ~Mike On Mon, Nov 9, 2015 at 4:34 PM, Ralph Castain wrote: > My apologies for the long, long delay in finally responding. Your advice > worked like a charm!! > > Thanks a lot to all who responded. > Ralph > > >> On Oct 13, 2015, at 7:00 PM, Aaron C. de Br

Re: Team project via Git repo

2015-11-09 Thread Ralph Castain
My apologies for the long, long delay in finally responding. Your advice worked like a charm!! Thanks a lot to all who responded. Ralph > On Oct 13, 2015, at 7:00 PM, Aaron C. de Bruyn wrote: > > Without knowing too much about your environment, I figured I'd tell > you how I do it on my Debia

Re: Team project via Git repo

2015-10-13 Thread Ralph Castain
I’ll give these, and the suggestions from Jonathan, a try tomorrow when I arrive after travel and let you know how it goes. Thanks!!! > On Oct 13, 2015, at 7:01 PM, Aaron C. de Bruyn wrote: > > Oops--almost forgot. Create a .gitignore in your ~/code/carsite file > before you commit your chang

Re: Team project via Git repo

2015-10-13 Thread Aaron C. de Bruyn
Oops--almost forgot. Create a .gitignore in your ~/code/carsite file before you commit your changes and push them to GitHub. https://www.gitignore.io -A On Tue, Oct 13, 2015 at 7:00 PM, Aaron C. de Bruyn wrote: > Without knowing too much about your environment, I figured I'd tell > you how I d

Re: Team project via Git repo

2015-10-13 Thread Aaron C. de Bruyn
Without knowing too much about your environment, I figured I'd tell you how I do it on my Debian-derivative systems. * Install python-virtualenv and virtualenvwrapper - These tools help you create isolated python environments under your home folder under '.virtualenv'. * Create a virtualenv for th

Re: Team project via Git repo

2015-10-13 Thread Jonathan Querubina
This is a long shot, but, do you have .pyc files on the repository? If yes, try removing *.pyc Sent from my iPhone > On Oct 13, 2015, at 22:05, Jonathan Querubina wrote: > > No, if debug is true, you do not have to worry about statics yet > > Are you activating the env before the runserver co

Re: Team project via Git repo

2015-10-13 Thread Jonathan Querubina
No, if debug is true, you do not have to worry about statics yet Are you activating the env before the runserver command? Sent from my iPhone > On Oct 13, 2015, at 21:56, Ralph Castain wrote: > > >> On Oct 13, 2015, at 5:42 PM, Jonathan Querubina wrote: >> >> Have you installed any dependen

Re: Team project via Git repo

2015-10-13 Thread Ralph Castain
> On Oct 13, 2015, at 5:42 PM, Jonathan Querubina wrote: > > Have you installed any dependencies via "pip” ? Only Django itself was installed via “pip” - we went thru the binaries and edited the path. We also uninstalled Django and reinstalled it on the host using “pip”, but the behavior is t

Re: Team project via Git repo

2015-10-13 Thread Jonathan Querubina
Have you installed any dependencies via "pip" ? If not and all the code has been done under your djando apps, the problem could be on the git. Have you checked .gitignore ? Sent from my iPhone > On Oct 13, 2015, at 21:38, rhc.open...@gmail.com wrote: > > Just to update: we also tried simply co

Re: Team project via Git repo

2015-10-13 Thread rhc . openmpi
Just to update: we also tried simply copying the entire virtual environment across, correcting for any differences in path. Still go the same behavior. We'd really welcome some advice on this one as otherwise we won't be able to use Django - we need a way to collaborate on implementation. Thank

Team project via Git repo

2015-10-13 Thread rhc . openmpi
Hi folks I'm a Django newbie (have found it very helpful!), so please excuse the naivete. I have a question regarding team work on a Django project via GitHub. I followed your excellent tutorial and have a virtual Python v2.7 environment with Django 1.8.5 installed in it (FWIW: I thought I ins