User Tools

Site Tools


software:heroku

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
software:heroku [2013/11/10 17:26] – created Michele Porellisoftware:heroku [2014/04/23 09:55] (current) – [How-Tos] Michele Porelli
Line 1: Line 1:
 ====== Heroku ====== ====== Heroku ======
 ===== How-Tos ===== ===== How-Tos =====
 +==== Database ====
 +=== Import-Export ===
 +== dump to pg, pg to dump ==
   * [[https://devcenter.heroku.com/articles/heroku-postgres-import-export|Importing and Exporting Heroku Postgres Databases with PG Backups]]   * [[https://devcenter.heroku.com/articles/heroku-postgres-import-export|Importing and Exporting Heroku Postgres Databases with PG Backups]]
 +==== Fix Heroku console with Fastweb connection ==== 
 +NOTE: You need an external gateway 
 +<code> 
 +EXTERNAL_GATEWAY="x.x.x.x" 
 +INTERNAL_LAN="x.x.x.x/xx" 
 +ip route flush table 4 
 +ip route show table main | grep -Ev ^default | while read ROUTE ; do ip route add table 4 $ROUTE ; done 
 +ip route add table 4 default via $EXTERNAL_GATEWAY 
 +iptables -t mangle -A PREROUTING -p tcp --dport 5000 -s $INTERNAL_LAN -j MARK --set-mark 4 
 +ip rule add fwmark 4 table 4 
 +ip route flush cache 
 +</code>
software/heroku.txt · Last modified: 2014/04/23 09:55 by Michele Porelli