# On OSX or Linux
(venv)website.com $ django-admin.py startproject project .
# On Windows
(venv)website.com $ python -m django-admin startproject project .
(venv)website.com $ python manage.py runserver
If everything goes well, you should see this:
(venv)website.com $ git init .
.gitignore
file.*.pyc
venv
(venv)website.com $ git add .
(venv)website.com $ git commit -m "Created a Django project"
nothing to commit
.(venv)website.com $ git status
Why don’t you try streamlining your project using GitFlow or Feature Branch Workflows? They say these workflows are great especially if you’re working with a team.