- Speed
- Learn once - swiss army knife
- Extensibility
- Linting
- Searching
- Syntax Highlighting
- Snippets
was originally using these buildpacks: https://github.com/GramercyStudios/heroku-geo-buildpack.git#1.1 https://github.com/heroku/heroku-buildpack-python.git#v40
got this error when i pushed: Collectstatic configuration error. To debug, run .....
when i ran: heroku run .... collectstatic everything was fine!!!
so i had to patch the python buildpack:
https://github.com/frankwiles/django-app-metrics Use this guy
https://code.djangoproject.com/wiki/ProfilingDjango Timing Python calls: http://docs.python.org/library/hotshot.html
prof = hotshot.Profile(final_log_file)
try:
ret = prof.runcall(f, *args, **kwargs)
finally: