Closed naftulikay closed 9 years ago
Why would you expect it to be generated in src/
? I know some people use that as a default. I also have for a time, but I don't do it anymore.
Note that, for instance, buildout's mr.developer
extension uses src/
as the default place to check out projects, leading to a potential clash.
=> Placing it in src/ is more of a personal preference instead of something djangorecipe should force as the new default on all users. Or am I missing something?
The request is to provide a parameter to allow users to customize where the project sources are generated. I'm not suggesting we force anything on anyone, only that we provide the option to customize. On Mar 14, 2013 4:10 AM, "Reinout van Rees" notifications@github.com wrote:
Why would you expect it to be generated in src/? I know some people use that as a default. I also have for a time, but I don't do it anymore.
Note that, for instance, buildout's mr.developer extension uses src/ as the default place to check out projects, leading to a potential clash.
=> Placing it in src/ is more of a personal preference instead of something djangorecipe should force as the new default on all users. Or am I missing something?
— Reply to this email directly or view it on GitHubhttps://github.com/rvanlaar/djangorecipe/issues/72#issuecomment-14896884 .
I agree with @rfkrocktk, the way now is actually forcing user to create their project at the ./ folder. A parameter would be good.
There are a couple of related issues, I tagged them: https://github.com/rvanlaar/djangorecipe/issues?labels=projectgeneration&page=1&state=open
The important one is #65: do we still need to do it ourselves now that Django does it?
I've removed the project generation functionality as django does it itself already.
When I use the project initialization feature, the project is initialized in the
./
directory rather than in thesrc
directory. My buildout.cfg looks like this:djangorecipe seems to create the source folder in
./
rather than insrc/
, as would be expected. I can move the project without any problems, but it's kind of annoying, as I'm writing a custom project-generation script.I'd expect to see a folder at
src/myproject
, but instead I see./myproject
.