Lock in $30 Savings on PRO—Offer Ends Soon! ⏳
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Hospedar su aplicación Rails en la nube con Heroku
Search
Florent Guilleux
April 14, 2013
Programming
1
90
Hospedar su aplicación Rails en la nube con Heroku
Florent Guilleux
April 14, 2013
Tweet
Share
More Decks by Florent Guilleux
See All by Florent Guilleux
Rails anti patterns
florent2
2
8.3k
Handling requests in parallel in Rails applications, an introduction
florent2
0
9.4k
Beautiful Ruby code formatting
florent2
1
520
Improve Your Rails Development Workflow
florent2
2
380
Other Decks in Programming
See All in Programming
connect-python: convenient protobuf RPC for Python
anuraaga
0
310
Combinatorial Interview Problems with Backtracking Solutions - From Imperative Procedural Programming to Declarative Functional Programming - Part 1
philipschwarz
PRO
0
110
jakarta-security-jjug-ccc-2025-fall
tnagao7
0
100
Java_プロセスのメモリ監視の落とし穴_NMT_で見抜けない_glibc_キャッシュ問題_.pdf
ntt_dsol_java
0
230
Feature Flags Suck! - KubeCon Atlanta 2025
phodgson
0
180
AI時代もSEOを頑張っている話
shirahama_x
0
190
CSC509 Lecture 13
javiergs
PRO
0
260
dnx で実行できるコマンド、作ってみました
tomohisa
0
110
Web エンジニアが JavaScript で AI Agent を作る / JSConf JP 2025 sponsor session
izumin5210
4
2.1k
レイトレZ世代に捧ぐ、今からレイトレを始めるための小径
ichi_raven
0
480
TypeScriptで設計する 堅牢さとUXを両立した非同期ワークフローの実現
moeka__c
5
2.7k
2025 컴포즈 마법사
jisungbin
0
160
Featured
See All Featured
Writing Fast Ruby
sferik
630
62k
A designer walks into a library…
pauljervisheath
210
24k
Agile that works and the tools we love
rasmusluckow
331
21k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
285
14k
The Language of Interfaces
destraynor
162
25k
For a Future-Friendly Web
brad_frost
180
10k
BBQ
matthewcrist
89
9.9k
Mobile First: as difficult as doing things right
swwweet
225
10k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
196
67k
YesSQL, Process and Tooling at Scale
rocio
174
15k
Become a Pro
speakerdeck
PRO
30
5.6k
Transcript
Hospedar su aplicación Rails en la nube con Heroku Rails
Girl Lima April 2014 @Florent2 http://goo.gl/l6S7W
¿Por qué con Heroku ? muy facil de usar gratis
para pequeñas aplicaciones casi ninguna administración de sistema
Preparación 1. Inscribirse: https://api.heroku. com/signup/devcenter 2. Instalar Heroku Toolbeit: https://toolbelt.heroku.com/
3. Login desde su terminal: heroku login
1ro despliegue de su aplicación Rails 1. en Gemfile cambiar
gem "sqlite3" en group :production do gem "pg" end group :development do gem "sqlite3" end 2. bundle install 3. git init . ; git add . ; git commit -m "first" 4. heroku create 5. git push heroku master 6. heroku run rake db:migrate 7. heroku open
1. hacer un commit de sus cambios 2. git push
heroku master si hay nuevas migraciones: 3. heroku run rake db:migrate Siguientes despliegues
Otros comandos útiles Acceder a la consola: heroku run console
Ver los logs: heroku logs --tail
Más información Heroku Dev Center Heroku Addons The Heroku Hacker's
Guide Higher Order Heroku The Heroku Changelog