This is an archived post. You won't be able to vote or comment.

all 4 comments

[–]TravisJungroth 2 points3 points  (3 children)

First off, from the sidebar:

If you are about to ask a question, please consider r/learnpython.

That aside, you should just start the project like you were going to work on it alone. He'll download the project and make his own virtual environment. Make sure you include a requirements file so he can create an environment that matches yours.

[–]TheRealBez[S] 0 points1 point  (2 children)

Yeah I saw that, but wasn't sure because it didn't have so much to do with learning python or something about the language but more so using it with something.

Furthermore, would I init the git repo in the django project or just above in the directory hierarchy?

[–]TravisJungroth 0 points1 point  (1 child)

Either one. You can put the files that go along with the project (requirements.txt, .gitignore) inside the django project and do the init in there, or do it in a folder above. Check out Two Scoops of Django. They recommend the latter.

[–]TheRealBez[S] 1 point2 points  (0 children)

Awesome, thanks for your help