Questions tagged [cedar]

**'Celadon Cedar'** is the newest runtime stack for apps hosted on heroku.com. It is a polyglot platform, supporting multiple languages including Ruby, Python, Java, and Clojure.

'Celadon Cedar' is the newest runtime stack for apps hosted on heroku.com. It is a polyglot platform, supporting multiple languages including Ruby, Python, Java, and Clojure.

Cedar has several improvements over Heroku's earlier stacks:

  • It uses the process model to declare, manage, and run processes across a distributed environment
  • Different types of processes can to scale at different rates to meet demand
  • Aggregate logs and process transparency give users improved process visibility into app behaviour
  • Increased user control over app releases
  • Language support is implemented through modular, customizable buildpacks, allowing developers to add support for any language or framework they need

More information:

For general questions about heroku itself, see the tag.

117 questions
34
votes
2 answers

Running rake db:drop db:create db:migrate on Heroku Cedar stack

When I try to run: heroku run rake db:drop db:create db:migrate I get the error: Running rake db:drop attached to terminal... up, run.5 Couldn't drop adsfsadfas : #
John
  • 13,125
  • 14
  • 52
  • 73
30
votes
7 answers

heroku run console returns 'Error connecting to process'

I have deployed a rails 3.1 app to Heroku Cedar stack, and am trying to perform a: heroku run rake db:migrate it returns: Running console attached to terminal... Error connecting to process I also try to simply launch the console: heroku run…
jdcravens
  • 577
  • 1
  • 4
  • 15
25
votes
7 answers

Rails 3.2: Heroku push rejected, no Cedar-supported app detected

Rails newbie here. I'm trying to deploy my Rails 3.1/Ruby 1.9.3-p0 app to Heroku and have followed all the steps according to Heroku. But I keep running into: Heroku push rejected, no Cedar-supported app detected I've tried all the suggestions in…
ralphos
  • 626
  • 2
  • 10
  • 20
23
votes
3 answers

How to get Gzip and Expires Header on a Rails 3.1.1 app on Heroku Cedar?

I'm running a Rails 3.1.1 application on Heroku Cedar. By default this stack doesn't Gzip and set Expires Headers on assets. There is some doc about that, but it's not very clear : http://devcenter.heroku.com/articles/http-routing Can somebody give…
Camille
  • 678
  • 6
  • 23
18
votes
3 answers

"rake aborted! stack level too deep" while deploying to Heroku

My website used to be working and Heroku precompiled the assets and everything. Now, seemingly out of nowhere, I started to get this message on deploy: Preparing app for Rails asset pipeline Running: rake assets:precompile mkdir -p…
Ashitaka
  • 19,028
  • 6
  • 54
  • 69
16
votes
3 answers

HardDisk Quota — Cedar Stack (Heroku)

I know that the maximum slug size allowed is 200 MB. But what is the maximum disk space you can use per instance? Say I'm downloading a couple of files when the node process is running.
Gautham Badhrinathan
  • 2,377
  • 3
  • 20
  • 30
15
votes
4 answers

Heroku logging not working

I've got a rails 3.1 app deployed on Heroku Cedar. I'm having a problem with the logging. The default rails logs are working just fine, but when I do something like: logger.info "log this message" In my controller, Heroku doesn't log anything. …
joshuacronemeyer
  • 1,316
  • 1
  • 10
  • 20
15
votes
2 answers

How to enable gzip compression on Heroku Cedar (Python/Flask/Gunicorn)

How do I enable GZIP compression on the new Heroku Cedar stack? This is straight from their site: Since requests to Cedar apps are made directly to the application server – not proxied through an HTTP server like nginx – any compression of…
Gabriel Florit
  • 2,886
  • 1
  • 22
  • 36
13
votes
6 answers

Is it possible to run my Rails app on Heroku with Ruby 1.9.3? If so, how?

I tried this tip: https://github.com/thoughtbot/laptop/pull/14#issuecomment-3192270 . On deploy I see -----> Using RUBY_VERSION: ruby-1.9.3-p0 But my logs show the environment variable is not respected INFO ruby 1.9.2 (2011-07-09)…
Gabe Kopley
  • 16,281
  • 5
  • 47
  • 60
11
votes
2 answers

CSV export in Stream (from Django admin on Heroku)

we have the need to export a csv-file comprising data from the model from Django admin which runs on Heroku. Therefore we created an action where we created the csv and returned it in the response. This worked fine until our client started exporting…
Tom
  • 211
  • 1
  • 7
11
votes
1 answer

how to make a simple php app send emails from heroku cedar stack?

I have a very simple php website, that has a contact form that uses the php mail() function to send emails. How can I host this on heroku? Which add-on should I use, and how do I set it to work with php?
Diego Gomes
  • 565
  • 6
  • 15
11
votes
3 answers

redmine deploy on heroku cedar

I've been banging my head against the wall trying to deploy redmine 2.0.3 on heroku cedar. I had lots of problems with deploying with sqlite gem so I removed all sqlite references from my Gemefile, deleted Gemfile.lock, ran bundle install, and…
Alejandro Lozdziejski
  • 1,063
  • 4
  • 12
  • 30
11
votes
1 answer

Heroku *.js isn't precompiled error

I'm using Rails on Heroku Cedar stack and it's not throwing any issues while compiling the assets but then I get a 500 internal server error: 2012-06-25T23:22:59+00:00 app[web.1]: ActionView::Template::Error (bootstrap-datepicker.js isn't…
turbo2oh
  • 2,849
  • 6
  • 34
  • 46
11
votes
3 answers

How to Enable GZIP compression on Play Framework 1 app on Heroku Cedar?

I'd like to enable GZIP compression for public assets and HTTP responses for performance. My site has a lot of mobile access. As far as I can tell, there is nothing built into Play Framework to support this, and Heroku doesn't seem to have a…
Daniel Alexiuc
  • 13,078
  • 9
  • 58
  • 73
9
votes
1 answer

Heroku Cedar and nginx (gzip)

According to the comments in the accepted answer here Rails how to Gzip Javascript? (Heroku) and the official cedar documentation (http://devcenter.heroku.com/articles/http-routing#the_herokuappcom_http_stack): Since requests to Cedar apps are made…
kevlar
  • 1,110
  • 3
  • 17
  • 30
1
2 3 4 5 6 7 8