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
8k
Handling requests in parallel in Rails applications, an introduction
florent2
0
9.1k
Beautiful Ruby code formatting
florent2
1
480
Improve Your Rails Development Workflow
florent2
2
350
Other Decks in Programming
See All in Programming
やっと腹落ち「スプリント毎に動くモノをリリースする」〜ゼロから始めるメガバンクグループのアジャイル実践〜
sasakendayo
0
230
メンテが命: PHPフレームワークのコンテナ化とアップグレード戦略
shunta27
0
330
【AI 自走型】Figma からデザインコーディングを行うプロンプト
tetsuro_b
0
110
From the Wild into the Clouds - Laravel Meetup Talk
neverything
0
190
Ça bouge du côté des animations CSS !
goetter
2
170
変化の激しい時代における、こだわりのないエンジニアの強さ
satoshi256kbyte
1
790
Datadog Workflow Automation で圧倒的価値提供
showwin
1
330
自力でTTSモデルを作った話
zgock999
0
130
Better Code Design in PHP
afilina
0
190
Boos Performance and Developer Productivity with Jakarta EE 11
ivargrimstad
0
770
PRレビューのお供にDanger
stoticdev
1
250
Domain-Driven Design (Tutorial)
hschwentner
13
22k
Featured
See All Featured
Done Done
chrislema
182
16k
VelocityConf: Rendering Performance Case Studies
addyosmani
328
24k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.2k
A better future with KSS
kneath
238
17k
BBQ
matthewcrist
87
9.5k
Building a Modern Day E-commerce SEO Strategy
aleyda
38
7.1k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
356
29k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
4
390
YesSQL, Process and Tooling at Scale
rocio
172
14k
Rebuilding a faster, lazier Slack
samanthasiow
80
8.9k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Fireside Chat
paigeccino
35
3.2k
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