Does anyone know what Heroku will change when deployed? I have a local installation for developers with Ubuntu 11.10, and my project is installed in venv, all packages are managed through pip. The relevant .txt requirements are in my repo and sent to Heroku when clicked. Both my local machine and Heroku access one instance of RDS on AWS.
Starting the Django dev server locally (manage.py runningerver) results in a working page. Trying to start (via my Procfile) a dev server on Heroku causes an error in the template in {% url foobar%} as follows:
Caught TypeError while rendering: 'ParseResult' object is not callable
My requirements.txt contains the following:
Django==1.3.1 MySQL-python==1.2.3 PIL==1.1.7 amqplib==1.0.2 anyjson==0.3.1 boto==2.2.2 celery==2.5.1 distribute==0.6.24 django-celery==2.5.1 django-kombu==0.9.4 django-picklefield==0.2.0 django-piston==0.2.3 gevent==0.13.6 greenlet==0.3.4 gunicorn==0.14.2 httplib2==0.7.4 kombu==2.1.1 python-dateutil==1.5 wsgiref==0.1.2 zencoder==0.4
Does anyone have an idea?
source share