On Wed, Dec 24, 2014 at 11:18 AM, andy <[email protected]> wrote: > Thank you. Since it's only me that'd be using the apps do can I bypass the > 'deploy using pip' thing and somehow directly use it in my other projects?
you could just set links or add to your `sys.path` list, but that makes it hard not to break one project when developing the other. a little better is to use your version control system, so now you have (at least) three projects: project A, project B and a common app, each on a different repository. each server would checkout not only the project-specific code but also the common app -- Javier -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAFkDaoT22CdQ888CYTenDneuddJMe2yS4ChJ8S0rXV0a%3DYZOaA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

