Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
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
92
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
540
Improve Your Rails Development Workflow
florent2
2
390
Other Decks in Programming
See All in Programming
GoのDB アクセスにおける 「型安全」と「柔軟性」の両立 - Bob という選択肢
tak848
0
270
条件判定に名前、つけてますか? #phperkaigi #c
77web
2
810
生成 AI 時代のスナップショットテストってやつを見せてあげますよ(α版)
ojun9
0
300
Fundamentals of Software Engineering In the Age of AI
therealdanvega
2
290
AI Assistants for Your Angular Solutions
manfredsteyer
PRO
0
160
AI時代の脳疲弊と向き合う ~言語学としてのPHP~
sakuraikotone
1
1.6k
Rで始めるML・LLM活用入門
wakamatsu_takumu
0
210
2026-03-27 #terminalnight 変数展開とコマンド展開でターミナル作業をスマートにする方法
masasuzu
0
160
Mastering Event Sourcing: Your Parents Holidayed in Yugoslavia
super_marek
0
110
How to stabilize UI tests using XCTest
akkeylab
0
140
実践ハーネスエンジニアリング #MOSHTech
kajitack
7
3.9k
Feature Toggle は捨てやすく使おう
gennei
0
350
Featured
See All Featured
Product Roadmaps are Hard
iamctodd
PRO
55
12k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
128
55k
Exploring anti-patterns in Rails
aemeredith
2
290
Heart Work Chapter 1 - Part 1
lfama
PRO
5
35k
Groundhog Day: Seeking Process in Gaming for Health
codingconduct
0
130
brightonSEO & MeasureFest 2025 - Christian Goodrich - Winning strategies for Black Friday CRO & PPC
cargoodrich
3
130
Rails Girls Zürich Keynote
gr2m
96
14k
AI in Enterprises - Java and Open Source to the Rescue
ivargrimstad
0
1.2k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.7k
WCS-LA-2024
lcolladotor
0
500
The Power of CSS Pseudo Elements
geoffreycrofte
82
6.2k
Visualization
eitanlees
150
17k
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