Tag heroku

[Solved] a href not working with a bare web page

Apparently the answer was here: How to setup URLs for static site with Ruby Rack on Heroku Individual pages were being routed to “https://stackoverflow.com/” all the time. Needed to modify “config.ru” to get routing to work properly. Next step is…

[Solved] Godep processing custom packages

Thanks to @JimB comments I found out the following: the most obvious and simple solution is just keep your dependencies in GOPATH, with version control, and just let godep handle them all (@JimB) So yes, this means adding package(s) to…

[Solved] Why did push of a Flask app to Heroku failed?

The error message says it all: xlwings requires an installation of Excel and therefore only works on Windows and macOS. To enable the installation on Linux nevertheless, do: export INSTALL_ON_LINUX=1; pip install xlwings You might be using a package in…

[Solved] Heroku Run Rails Console Not Working

Install the heroku toolbelt first, and then try again your heroku run rails c command. To verify your toolbelt installation use: $ heroku –version See Heroku CLI for more information. 1 solved Heroku Run Rails Console Not Working