Tagged Questions
0
votes
1answer
59 views
js.coffee.erb throwing an error due to å æ ø character fetched from DB
Env: Rails 3.2.11 app
In assets/javascript
I have this file home.js.coffee.erb :
jQuery ($) ->
$.supersized
# Functionality
slide_interval: 3000 # Length between transitions
...
1
vote
1answer
99 views
In Playframework 2.1.x how to select the native coffescript in development mode only
In Play 2.1.x and higher you can use native coffeescript compilation by adding to Build.scala a directive like:
coffeescriptOptions := Seq("native", "/opt/local/bin/coffee -p")
This is a very nice ...
0
votes
2answers
97 views
How to get coffeescript to compile on Heroku?
I'm using Rails 3.2 and have this as a Gemfile:
gem 'rails', '3.2.11'
group :development do
gem 'sqlite3', '1.3.5'
gem 'rspec-rails', '2.11.0'
end
group :assets do
gem 'sass-rails', '3.2.5'
...
0
votes
2answers
380 views
Access heroku environment variable in coffeescript file
I have a scenario where I want my CoffeeScript file to access an environment variable like an API key value. This works fine locally but it isn't working when I push it up to heroku.
The file is ...
0
votes
1answer
157 views
Javascript with Heroku
I have everything working on my local host with javascript/coffeescript.
But when I transfer it to heroku. The only javascript asset I see is application-2094230948230948.js (not the exact number). ...
4
votes
1answer
229 views
How can I fix this bizarre LoadError error produced by coffeescript/asset pipeline?
I'm using the Rails 3 asset pipeline. I got into a situation where I needed to order my Javascript files in a specific way so I added them all explicitly to application.js like this:
//= require ...
0
votes
1answer
201 views
Are CoffeeScript servers not as reliable as Node.js servers?
I took the code for my Node.js server and converted it to CoffeeScript, then I tried it on Heroku. It crashes when it receives a long JSON string, whereas the original version handles it without any ...
4
votes
2answers
295 views
Weird deployment issue with Django and CoffeeScript to Heroku
This is sort of a complex question so it will take a bit to explain. I'm not looking for a direct answer so any advice would be good. I have a Django app that uses a lot of CoffeeScript. To compile ...
1
vote
2answers
216 views
Install NPM (Node Package Manager) with pip?
I'm on Heroku and I would like to get NPM installed for a Django application. Is it possible to get npm installed using pip with the requirements.txt file?
9
votes
5answers
844 views
Creating an app on Heroku with Django and NPM
I'm writing a Django app that includes some CoffeeScript in it. To allow for this I'm using django-compressor which compiles the CoffeeScript to JS before the app is launched. django-compressor ...
3
votes
1answer
316 views
Trouble with rails 3.1 project deployed on heroku
For some reason my .js.coffee files in my project are not being called through the :remote => true links/forms
I'm trying to call the posts/new controller via Ajax. The controller is being called ...
1
vote
3answers
477 views
Coffeescript --watch switch not working with node 0.4.7
The --watch directive to the coffeescript compiler doesn't work with node.js 0.4.7. How to fix?
(Node 0.4.7 is currently required for deployment on Heroku.)
1
vote
2answers
369 views
can't seem to update mongohq database when running app server from heroku, Invalid BSONObj spec size: 1963524096 error
I'm having a mysterious bug where a rest call that I've created on my node server updates data when run from my local app server, but will not update data when running on heroku. In both cases, the ...
0
votes
1answer
297 views
deploying Rails 3.1 namespaced assets to Heroku
I have a Rails 3.1 application running on Heroku Cedar and it has a custom built Admin panel.
Admin is just a namespaced controller/view combination which live in controllers/admin and in views/admin.
...
9
votes
3answers
2k views
What needs to be configured for Heroku to handle templates based on CoffeeScript?
I have a create action that handles an AJAX request. On my development machine, a template named create.js.coffee is successfully processed to generate a javascript response. However, when I deploy to ...
39
votes
6answers
5k views
Can I run coffeescript in Heroku?
I have a node.js app written in CoffeeScript.
I'm wondering what is needed in order to host the app on Heroku.
Thanks