Developing a couple Django apps. On my development system, the urls.py paths start at the root of the website and everything plays nice. On the hosting system, unless I add /subdir/path the URL fails.
I am sure others have encountered this. How do I deploy changes to the hosting system without manually editing urls.py and URL paths in jquery every time I deploy a change? A search and replace during deployment from GitHub? wsgi modifications?
Any insight is appreciated