Reputation: 2308
I have setup a git repository and cloned open source code which I am planning on modifying from github to start development. I committed the codebase in our repository. I now have added few users and posts and other "stuff" into database.
I want to commit this change as well so that my teammate can check out and we have same settings and database throughout.
Upvotes: 0
Views: 727
Reputation: 55922
Upvotes: 0
Reputation: 33410
I think you should keep apps as small and loosely coupled as possible.
If sound, make another repository and python package for the app:
As for best practices, there is http://12factor.net, http://lincolnloop.com/django-best-practices/ and pinax projects which are really interresting.
If you're going to reuse and extend external apps, then maybe this article on best practice reusing apps can help.
Upvotes: 2