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
88
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
520
Improve Your Rails Development Workflow
florent2
2
370
Other Decks in Programming
See All in Programming
機能追加とリーダー業務の類似性
rinchoku
2
1.2k
テストカバレッジ100%を10年続けて得られた学びと品質
mottyzzz
2
560
Android 16 × Jetpack Composeで縦書きテキストエディタを作ろう / Vertical Text Editor with Compose on Android 16
cc4966
0
170
Namespace and Its Future
tagomoris
6
700
Go言語での実装を通して学ぶLLMファインチューニングの仕組み / fukuokago22-llm-peft
monochromegane
0
120
rage against annotate_predecessor
junk0612
0
160
テストコードはもう書かない:JetBrains AI Assistantに委ねる非同期処理のテスト自動設計・生成
makun
0
240
Cache Me If You Can
ryunen344
1
600
速いWebフレームワークを作る
yusukebe
5
1.7k
サーバーサイドのビルド時間87倍高速化
plaidtech
PRO
0
720
@Environment(\.keyPath)那么好我不允许你们不知道! / atEnvironment keyPath is so good and you should know it!
lovee
0
110
MCPで実現するAIエージェント駆動のNext.jsアプリデバッグ手法
nyatinte
7
1.1k
Featured
See All Featured
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Docker and Python
trallard
45
3.6k
How STYLIGHT went responsive
nonsquared
100
5.8k
Imperfection Machines: The Place of Print at Facebook
scottboms
268
13k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
139
34k
KATA
mclloyd
32
14k
Making the Leap to Tech Lead
cromwellryan
135
9.5k
Fireside Chat
paigeccino
39
3.6k
Typedesign – Prime Four
hannesfritz
42
2.8k
Speed Design
sergeychernyshev
32
1.1k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
15k
How GitHub (no longer) Works
holman
315
140k
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