DISQUS

bart's blog: Creating My Django Server.

  • Ash Christopher · 1 year ago
    Good walkthrough Bartek - the only thing I had to add for my deploy was the following:

    PythonPath “['/usr/lib/python2.5/site-packages/django', '/path/to/my/app'] + sys.path”

    then everything worked more or less without a hitch.
  • Bartek · 1 year ago
    Hey, thanks!

    As for the PythonPath, you do not need to include the path to django like I
    did if your app is in a different location. I shall revise that part to make
    it clearer but if your app is in /home/my/app then all you need to have is:

    PythonPath "['/home/my/app'] + sys.path"

    Hope that makes sense