Posts

Es werden Posts vom Januar, 2012 angezeigt.

Backup

mein Jahres-Backup ist erledigt - für Daten: mit Areca eine incrementelle Sicherung - für Fotos: die in Google Picasa integrierte Sicherung alles auf eine USB Festplatte.

Heroku .. Grails / Line Ending Problem

Was mich bei Heroku aufgehalten hat: Das Deployment einer Grails App von meinem Windows Rechner in die Heroku Cloud gelang nicht: git.exe push --progress "heroku" master Compressing objects: 100% (111/111) (snip) Total 120 (delta 28), reused 0 (delta 0) -----> Heroku receiving push -----> Grails 2.0.0 -----> Installing Grails 2.0.0 ..... -----> Error downloading Grails framework. Please try again... Ursache war: Windows Line Endings (CR+LF) !! Beste Lösung: git konfigurieren als "autocrlf = true" (Löschen cr beim commit) Alternative: Mit Editor die Dateien von CR+LF auf LF umstellen Einfache Lösung ... aber anhand der Meldung schwer auszumachen. Der Heroku Support hat mir das auf Anfrage schnell lösen können - ich bin erstmal selber nicht draufgekommen.

Heroku with grails 2 ... Easy first steps..

Tried out the new grails 2.0 framework including deployment into the cloud as desribed in the heroku blog - thanks to heroku - create grails app grails createApp myapp cd myapp" - version it with git (locally) grails integrate-with --git git init git add . git commit -m init - create "cloud server" and deploy the app heroku create --stack cedar   ... http://::::.herokuapp.com/ | git@heroku.com:::::::::::.git git push heroku master .. and the server is up and running with a simple grails 2 demo app. Cool.