0
votes
1answer
17 views

Heroku Mandrill Deployment Setup

Working on a Python/Django app, deploying with Heroku and sending emails with Mandrill. I've been able to send emails using my local configuration, but when I deploy to Heroku, the mail doesn't send ...
0
votes
1answer
38 views

Securely storing passwords on MongoDB + Python

I have a MongoDB running on Heroku, and I need to store full credentials for a 3rd party API, including password, username, security token, etc. What is the best way to protect the data? Would ...
1
vote
2answers
131 views

talking to a remote redis server using redis-py (python wrapper over redis)

I have installed redis on an independent database server(ec2 instance). And it has been installed and configured properly. Now all that I want to do is from my webserver, I connect to it, and make ...
0
votes
0answers
18 views

Detecting corrupted PDFs in file uploads on heroku

At my company, we accept user-uploaded PDFs. A surprisingly high percent of these uploads are corrupted. Is there a way we could detect this reliably? The app runs on python / heroku. A call to the ...
0
votes
0answers
20 views

python django-herokuapp on windows error : The system cannot find the file specified

On windows 7 32-bits Python2.7, I can't use the commands 'manage.py herokuapp'. I get an error about a missing file? Could you drive me how to debug that please? ...
0
votes
1answer
29 views

django a different production_settings file

I have a settings.py file, that contains basic settings. Then I have a local_settings.py file, that contains some profiling and testing apps as django_debug_toolbar etc. and then I have a different ...
1
vote
2answers
40 views

Google Analytics tracking not recognized in flask app on heroku

I added the piece of javascript Google Analytics gives you to the of my template, but Analytics says tracking is not installed. I've used Analytics on several static pages before without any issue. ...
0
votes
2answers
45 views

Heroku Django db postgres error

I am trying to get my first django app up, but I'm running into this db error: OperationalError: could not connect to server: Connection refused Is the server running on host "localhost" and ...
4
votes
2answers
49 views

Running heroku gunicorn within subfolder?

I'm new to heroku and gunicorn so I'm not sure how this works. But I've done some searching and I think I'm close to deploying my Django app (1.5.1). So I know I need a Procfile which has web: ...
0
votes
2answers
36 views

“Application error has occurred” when attempting to run a python app using the Twilio API in Heroku

Twilio newbie question: I created an app that uses the Twilio API as I followed along to the tutorial by General Assembly The files I added are app.py Procfile requirements.txt app.py from ...
0
votes
0answers
28 views

Django runserver, and s3boto backend

Django's "manage.py runserver" has the wonderful ability to magically gather altered CSS, JS, and image files as it's running. This makes the save changes-reload cycle incredibly fast when doing ...
0
votes
1answer
29 views

Django url reverse matching error

This is my application tree : myapp/ assets/ statics/ settings.py urls.py \\other stuff main/ urls.py views.py templates/ base.html index.html \\other stuff manage.py ...
11
votes
5answers
268 views

How to integrate a standalone python script into a Rails application?

I've got a program that has a small file structure going on and is then ran using python do_work.py foo bar I want my rails users to press a button and have this happen for them, with the result ...
0
votes
1answer
29 views

Installing PyV8 on Heroku

I'm trying to install PyV8 for my Heroku app. At first I tried adding it to the requirements, but I got an error because heroku don't have svn installed. I managed to find the lib on some git repo, ...
-1
votes
2answers
39 views

how to write a client/server app in heroku

I am quite new to heroku and I reached a bump in my dev... I am trying to write a server/client kind of application...on the server side I will have a DB(I installed postgresql for python) and I was ...
0
votes
0answers
63 views

Not seeing my heroku celery workers stats on new-relic

I have a python server running on heroku with one web dyno and an additional dyno running my celery tasks. I added the new-relic add-on and can see monitoring data for my application except data for ...
0
votes
1answer
61 views

Heroku, flask, and python sockets?

I have a python script that runs on my computer. It opens a socket and prints anything it receives. This definitely works -- I've managed to connect to it from other computers and send it data. The ...
3
votes
1answer
74 views

Celery is not working on my Heroku

What on earth am I doing wrong? I have recently found an awesome django template called django-skel. I started a project with it because it made it very easy to use heroku with django. It was all ...
0
votes
1answer
53 views

Up-to-date Django-Facebok-Heroku Tutorial

I am trying to learn 3 tools at once, and I am in deep misery. Is there any up-to-date tutorial to build a simple Django app that uses Facebook Graph API and runs on Heroku?
0
votes
2answers
69 views

Python web.py peewee and heroku

I have a small all based on web.py and peewee. Deployment to heroku goes fine and I have a DB running, but how do I configure peewee to use the heroku postgress db? The peewee documentation doesn't ...
1
vote
1answer
93 views

Heroku app runs locally but gets H12 timeout error (uses a package)

Similar questions have been asked but the H12 seems to be caused by many things and none of the answers apply here. I have built python apps with heroku before but now I'm using a package structure ...
0
votes
1answer
62 views

Bottle with SQLAlchemy on Heroku

I am trying to setup a simple server on heroku using bottle and sqlalchemy but I keep getting the error that I have not given my methods enough arguments because the "db" keyword is not getting ...
0
votes
0answers
32 views

Heroku push error (possible cause pip install PIL)

Recently, I added following lines to requirements file: boto==2.8.0 django-storages==1.1.8 easy-thumbnails==1.2 pil==1.1.7 Now, when I push the project it gives me an error: -----> Installing ...
0
votes
1answer
175 views

tornado.database Importerror: No module named database

I'm using a fork of Bret Taylor's 'socialcookbook' (https://github.com/finiteloop/socialcookbook) which uses "import tornado.database" - and it's worked perfectly until yesterday (the 3.01 build?) and ...
0
votes
0answers
86 views

Running selenium browser on server (Flask/Python/Heroku)

I am scraping some websites that seem to have pretty good protection against it. The only way I can get it to work is to use Selenium to load the page and then scrape stuff from that. Currently this ...
0
votes
1answer
19 views

Heroku endpoint

I wrote a simple HTTP listener and deployed it in a Heroku app. I made sure to bind the port in $PORT. Now, I've tried connecting to the app using the url name-of-my-app.herokuapp.com:PORT with and ...
0
votes
1answer
51 views

Arduino Heroku request

I am trying to make a request from an Arduino to a Heroku application. All it returns is Heroku's 404 page. So I wrote a similar script in Python, and it works fine. Arduino code: char serverName[] ...
0
votes
2answers
39 views

How to queue up scheduled actions

I am trying to set up some scheduled tasks for a Django app with celery, hosted on heroku. Aside from not know how everything should be configured, what is the best way to approach this? Let's say ...
4
votes
2answers
78 views

How to debug Django app running on Heroku using a remote pdb connection?

To debug a bug I'm seeing on Heroku but not on my local machine, I'm trying to do step-through debugging. The typical import pdb; pdb.set_trace() approach doesn't work with Heroku since you don't ...
0
votes
0answers
58 views

Procfile not found, Heroku python app

Doing the heroku python demo and having problems with Procfile. I have it in the right directory (alongside requirements.txt, venv/, and app.py) and the file is "Procfile" without .txt extension (as ...
0
votes
1answer
41 views

Install pip module from a rails app on heroku

I have an rails app deployed on heroku. This app depends on one python module, https://github.com/clips/pattern. Based on documentation of pattern, I could install by two ways: 1: cd pattern-2.5; ...
0
votes
0answers
120 views

Detecting when a client disconnects with Django and Server-Sent Events on Heroku

Heroku's documentation about sending a streaming response says: "If you’re sending a streaming response, such as with server-sent events, you’ll need to detect when the client has hung up, and ...
1
vote
1answer
181 views

Gunicorn+Django+Heroku. Python Path Issue

I'm running a Django app that I used to deploy to Heroku with Gunicorn without a hitch. By that I mean that I could run foreman start on my localhost and be able to understand whether the ...
0
votes
0answers
32 views

Unregistered Task Error with Django Celery

I have a django app that started with django 1.2. I had tasks explicitly named to ‘myapp.tasks.task_name.’ I had CELERY_IMPORTS set to (‘myapp.tasks.task_name’, ). I would still get errors about ...
0
votes
0answers
80 views

Deploying Django with Rpy2 to Heroku

I am a novice hitting the limits of my ability to get something small with django and rpy2 working on Heroku. In particular, I am trying to test the concurrency vulnerability rpy2 creates, to see if ...
1
vote
1answer
85 views

How to reduce number of connections using SQLAlchemy + postgreSQL?

I'm developing on heroku using their Postgres add-on with the Dev plan, which has a connection limit of 20. I'm new to python and this may be trivial, but I find it difficult to abstract the database ...
1
vote
0answers
44 views

Is it possible to deploy a python script to /cgi-bin/ on a heroku cedar stack alongside my ruby on rails application?

Right now I deploy a RoR app to passenger + apache2, and because of a legacy requirement I use a python .cgi script in the apache /cgi-bin/. Is it possible to deploy a rails app to heroku with ...
0
votes
0answers
45 views

Heroku's “ImportError: No module named site” error and virtualenvwrapper

ImportError: No module named site I'm getting this error, and despite trying the solutions from other stackoverflow issues, I have a feeling it might have something to do with my virtualenv which ...
3
votes
1answer
82 views

Heroku can't find pip (very strange)

When I push to master, this happened: Counting objects: 1, done. Writing objects: 100% (1/1), 186 bytes, done. Total 1 (delta 0), reused 0 (delta 0) -----> Fetching custom git buildpack... done ...
0
votes
1answer
94 views

Error on using IronMQ as celery broker in Heroku

Currently we have a Python Django application hosted in Heroku cloud that uses Celery workers for background processing. Celery workers were using django DB as the broker. Recently we decided to use ...
67
votes
1answer
2k views

Heroku truncates HTTP responses?

I am running a Flask/Gunicorn Python app on a Heroku Cedar dyno. The app returns JSON responses to its clients (it's an API server, really). Once in a while clients get 0-byte responses. It's not me ...
1
vote
1answer
52 views

Django Heroku push failing

I'm running accross an error trying to push my Django project up to Heroku and I was looking to see if anyone had any insight. ! Heroku push rejected, no Cedar-supported app detected I am ...
7
votes
2answers
644 views

Can't start foreman in Heroku Tutorial using Python

I have been attempting to complete this tutorial, but have run into a problem with the foreman start line. I am using a windows 7, 64 bit machine and am attempting to do this in the git bash terminal ...
0
votes
1answer
64 views

why does easy_install install 64x when I ask for 32x

Is it trying to be "helpful"? I'm running win 8 64x. I need to install psycopg 32x. I use the command as noted in the heroku guide easy_install ...
1
vote
1answer
78 views

Debugging 500 on incoming Mail on Heroku from Mailgun

I'm trying to debug a view which gets an incoming mail from Mailgun to a Django installation on Heroku. The view itself is directly taken from the Mailgun docs and if I manually call the URL then I ...
0
votes
2answers
64 views

How can I install packages on my heroku app?

I have an app that makes use of shortuuid (https://pypi.python.org/pypi/shortuuid/0.1) that is working fine locally when I run it with runapp.py: import os from paste.deploy import loadapp from ...
1
vote
3answers
358 views

Does Heroku no longer support Celery?

I was finally getting to the point where I had some free time and wanted to add Celery to my Python/Flask project on Heroku. However, almost all mentions of Celery from the Heroku docs are gone. There ...
0
votes
1answer
140 views

Getting started with Heroku- git push heroku master hangs indefinitely?

I have been following the "Getting Started With Python on Heroku" tutorial located here and everything works as expected. However, when I try to execute the final 'git push heroku master' command, ...
0
votes
1answer
176 views

Emails not sending when using Flask-Mail with Heroku and Mailgun

I have been writing a simple app to test how to send emails via an SMTP method (needs to be SMTP to be portable to different SMTP services) using Flask-Mail. For this I am trying to use Mailgun ...
1
vote
2answers
90 views

Running Django and Neo4j on Heroku

I'm trying to deploy my Django app to Heroku using Neo4j's Addon. I'm using Neo4django. Locally, in my settings.py I have the following NEO4J_DATABASES = { 'default' : { ...

1 2 3 4 5 8