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
87
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.2k
Handling requests in parallel in Rails applications, an introduction
florent2
0
9.3k
Beautiful Ruby code formatting
florent2
1
510
Improve Your Rails Development Workflow
florent2
2
370
Other Decks in Programming
See All in Programming
AIに安心して任せるためにTypeScriptで一意な型を作ろう
arfes0e2b3c
0
370
一人でAIプロダクトを作るための工夫 〜技術選定・開発プロセス編〜 / I want AI to work harder
rkaga
12
2.6k
Go製CLIツールをnpmで配布するには
syumai
2
1.2k
未来を拓くAI技術〜エージェント開発とAI駆動開発〜
leveragestech
2
130
AIコーディングエージェント全社導入とセキュリティ対策
hikaruegashira
16
9.8k
decksh - a little language for decks
ajstarks
4
21k
Claude Code と OpenAI o3 で メタデータ情報を作る
laket
0
130
新世界の理解
koriym
0
130
AHC051解法紹介
eijirou
0
540
Langfuseと歩む生成AI活用推進
licux
3
170
QA x AIエコシステム段階構築作戦
osu
0
270
No Install CMS戦略 〜 5年先を見据えたフロントエンド開発を考える / no_install_cms
rdlabo
0
480
Featured
See All Featured
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
810
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
1k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
110
20k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
770
Bash Introduction
62gerente
614
210k
Practical Orchestrator
shlominoach
190
11k
Six Lessons from altMBA
skipperchong
28
4k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
A Tale of Four Properties
chriscoyier
160
23k
It's Worth the Effort
3n
186
28k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
229
22k
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