Re: How do I store project in subversion?

2006-08-15 Thread Kjell Magne Fauske
If you need some place to host your Subversion repository I'll recommend Google Code hosting: http://code.google.com/hosting/faq.html I recently moved a project to Google code hosting, and it was really easy. A SVN repository was set up for me automatically. - Kjell Magne Fauske --~--~

Re: How do I store project in subversion?

2006-08-15 Thread Jay Klehr
The .pyc files are compiled versions of the .py source files that you write. The .pyc files are generated when they need to be, and aren't necessary to store in subversion. They'll only take up space, and won't give you any added benefit by being versioned (since you're already versioning the

Re: How do I store project in subversion?

2006-08-15 Thread Ian Holsman
On 16/08/2006, at 10:55 AM, Corey Oordt wrote:Don't store your .pyc in the repository.the easiest way to avoid doing this it toa) fix up your svn:ignore in your repo to ignore themb) edit ~/.subversion/config and uncomment the line 'global-ignores' and make it global-ignores = *.pyc *.pyo .*.swp *.

Re: How do I store project in subversion?

2006-08-15 Thread Corey Oordt
Don't store your .pyc in the repository. Create a settings.default.py and store it in the repository. Each user can then maintain slightly different settings On Aug 15, 2006, at 6:50 PM, alex kessinger wrote: > > I want to thank you for all your anwsers it has been very helpfull. I > also hav

Re: Re: How do I store project in subversion?

2006-08-15 Thread alex kessinger
I want to thank you for all your anwsers it has been very helpfull. I also have another question. I am new to the python language, but is it okay to store thre .pyc files in subversion. also how do you guys handle different settings.py files amongest developers. --~--~-~--~~-

Re: Re: How do I store project in subversion?

2006-08-15 Thread Jon Atkinson
> To create a repository, follow the instructions > at: http://svnbook.red-bean.com/en/1.0/ch05s02.html The SVN book is an excellent resource, and if you want to dive straight in and get your repository set up quickly, I recommend the 'Quickstart' section: http://svnbook.red-bean.com/nightly/en/

Re: How do I store project in subversion?

2006-08-15 Thread Corey Oordt
I'm probably not the best person to be answering this, but I do have an internal subversion repository.If you don't have a working subversion server, follow the instructions at: http://svnbook.red-bean.com/nightly/en/svn.serverconfig.httpd.html(Since it's an internal machine, I just use basic authe

Re: How do I store project in subversion?

2006-08-15 Thread John Sutherland
On 15 Aug 2006, at 20:52, [EMAIL PROTECTED] wrote: > I was wondering if someone could tell me how they store the django > project in subversion. I am moving a php project I have already > written > to django and I want to open source this project. So I am trying to > figure out the best way to s

Re: How do I store project in subversion?

2006-08-15 Thread [EMAIL PROTECTED]
there are many tutorials on the web, just google them. If you are looking for a subversion repository for your project you can get one at berlinos.de. Sourceforge.net gives CVS, google subversion. If you want something easy, powerfulla and in python then check Mercurial - http://www.selenic.com/me