The heroku-postgres tag has no wiki summary.
0
votes
0answers
3 views
Unable to access Heroku environment config in dropwizard yaml config file
I have implemented simple REST API using Dropwizard and trying to launch it on Heroku.
I am stuck at the point where I want to access postgresql DB on Heroku.
I am not able to access the configuration ...
1
vote
1answer
50 views
Getting “Unknown primary key for table” while the ID is there
I've been debugging this trange problem of Rails giving me "Unknown primary key for table...", even when the table's ID is there.
I've copied the database from one heroku app to another, on the ...
-1
votes
0answers
12 views
How are defined job for Worker dynos in PHP Buildpack
After reading the documentation from Heroku, I found that with Ruby on Rails Heroku is using Profile to define worker and Gemfile to define what this worker really do. I am using PHP for my app so I ...
0
votes
2answers
25 views
Problems with syncdb after creating Heroku Django app
I'm setting up a Django app on Heroku using the https://devcenter.heroku.com/articles/django tutorial and I'm running into the below error running heroku run python manage.py syncdb
...
0
votes
0answers
18 views
Heroku Deployment Error : Application Error
I am trying to deploy my rails on heroku. Everything runs fine on my localhost but getting application error after deploying in heroku. I don't in-depth knowledge of rails. Any help will be highly ...
0
votes
0answers
11 views
Extracting API into another heroku app. Best practice
I'm planning on extracting some API endpoints from a Rails app hosted on Heroku that uses Postgres into a new Heroku app. What is the advisable way to do this?
Share the database with the 2nd app ...
0
votes
0answers
14 views
Heroku-postgres as test database for Rails
TL/DR: I need a way to run tests without dropping the target database.
I have two instances of a Heroku-Postgres database: 'app-dev' and 'app-test'.
I would like to use them for development and ...
0
votes
1answer
16 views
How to use Heroku-Scheduler
I've recently installed https://addons.heroku.com/scheduler in my heroku app, but I just cannot make any instruction get to work.
I think I don't know the correct syntax, for now I've tried with ...
3
votes
0answers
71 views
OperationalError could not connect to server
I put a Django app on Heroku recently. The home page looks fine, but when I try to go to a page that involves making a query (e.g. p = Photo.objects.get(title=title)), I get this error:
could not ...
2
votes
1answer
43 views
phpPgAdmin for Heroku database
When I create an app in Heroku and add a database (PostgresSQL) to it, is there a way to add a web interface for that database (such as phpPgAdmin)?
0
votes
1answer
37 views
running rails spec tests on heroku postgres
I am trying to use a free heroku postgres instance to use as my test database, but I am running into a problem as the first step seems to be for minitest to drop the database, which heroku postgres ...
0
votes
2answers
39 views
How much disk space do heroku plans have?
I creating an app that works like an DMS(Document Management System) so my client will be uploading PDF's, XLS's and DOC's.
0
votes
0answers
27 views
Rails code working with sqlite but fails on heroku with postgres
Can any one suggest why the following query might be raising error:
TypeError: can't dump anonymous class Class: INSERT INTO "emails" ("content", "created_at", "email_from", "email_to", "filter_id", ...
0
votes
1answer
46 views
Heroku Database Connection Properties
I'm trying to perform a relatively trivial task: I want to connect to a Heroku database. I have created the database and have been issued credentials from the Heroku site. However, when I try to ...
0
votes
2answers
64 views
Syncing Heroku and localhost databases
Hey so I am following the One Month Rails guide to learning Ruby and I have hit a wall on one of the lessons. I have just finished uploading an image with Paperclip, and as I finished my work on my ...