Is there a way to import all the modules in the django project itself instead of setting up again and again in all the systems. I would have used gem freeze or something like that in a rails project.
|
feedback
|
|
First of all you should be using virtualenv. This way the python path of your django app only has stuff relevant to it. This also allows you to run several separate django / python apps on the same server without them bumping heads. When you have a virtualenv with your django app running in it you need to generate a requirements file.
You can then use this file to generate a bundle.
This bundle can then be used to deploy with. | |||
|
feedback
|
|
There's a bit of a terminology confusion here: "modules" refers to individual I think what you're asking is how to install Python packages on deployment. The answer to that is, use pip with the | |||||||
feedback
|
|
Instead of
Try to use
I found this solution here: Django equivalent to "rake rails:freeze:gems" and "rake gems:unpack" | |||||||||||
feedback
|
|
Is there a reason you want to import all modules? It's a good practice to import only those modules, classes etc. which are needed... | |||
feedback
|
|
You can use virtual-env . | |||
|
feedback
|