(Being new to pinax development and only a year into Django - a quick
question)
Are we going to push and pull a clone of a pinax clone_project as the
trunk of pinax-lms or branch the entire pinax project itself? From
what I gather in this name:
http://github.com/pinax/pinax-lms-demo/tree/master
We are making a demo site and not really pushing all of pinax in this
repo. So, to start the version control we might have:
$ pinax-admin clone_project social_project lms
$ rm $this_and_that_we_don't_need
... rm ... rm ... change settings? Maybe we just keep all of
social_project?
// btw, which project is the envisioned starting point?
$ cd lms
$ git init
$ git add .
$ git commit -m "This is the basis for what we will push and pull"
So we will just be versioning a single instance of pinax and see what
might filter back into pinax proper?
And, someone should be able to clone this into a (pinax-env) and be
able to syncdb and runserver immediately?