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
deploy to heroku
Search
RailsGirls Ukraine
October 06, 2012
Programming
1
380
deploy to heroku
RailsGirls Ukraine
October 06, 2012
Tweet
Share
More Decks by RailsGirls Ukraine
See All by RailsGirls Ukraine
mom, where do the sites come form?
rg_ukraine
0
270
The Why's of RailsGirls
rg_ukraine
0
260
introduction to ruby
rg_ukraine
3
8.3k
where to go next
rg_ukraine
0
140
Other Decks in Programming
See All in Programming
開発チーム・開発組織の設計改善スキルの向上
masuda220
PRO
17
9.5k
SOCI Index Manifest v2が出たので調べてみた / Introduction to SOCI Index Manifest v2
tkikuc
1
110
STUNMESH-go: Wireguard NAT穿隧工具的源起與介紹
tjjh89017
0
390
CSC305 Summer Lecture 12
javiergs
PRO
0
130
フロントエンドのmonorepo化と責務分離のリアーキテクト
kajitack
2
150
Ruby Parser progress report 2025
yui_knk
1
250
未来を拓くAI技術〜エージェント開発とAI駆動開発〜
leveragestech
2
200
サイトを作ったらNFCタグキーホルダーを爆速で作れ!
yuukis
0
730
Laravel Boost 超入門
fire_arlo
2
160
TROCCO×dbtで実現する人にもAIにもやさしいデータ基盤
nealle
0
390
兎に角、コードレビュー
mitohato14
0
160
Updates on MLS on Ruby (and maybe more)
sylph01
1
160
Featured
See All Featured
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
Being A Developer After 40
akosma
90
590k
Building Better People: How to give real-time feedback that sticks.
wjessup
368
19k
Practical Orchestrator
shlominoach
190
11k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3k
It's Worth the Effort
3n
187
28k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Building Applications with DynamoDB
mza
96
6.6k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
8
500
Building Flexible Design Systems
yeseniaperezcruz
328
39k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
830
Typedesign – Prime Four
hannesfritz
42
2.8k
Transcript
None
What we need? A Heroku user account Basic
Ruby/Rails knowledge, including an installed version of Ruby 1.9.2, Rubygems, Bundler, and Rails 3. Basic Git knowledge
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
Accounts email and heroku password railsgirls
Preparing the app change in Gemfile.rb to bundle install --without
production gem ‘sqlite3’ group :development do gem ‘sqlite3’ end group :production do gem ‘pg’ end
Preparing the app gem install heroku config.assets.initialize_on_precompile = false add
to application.rb git init git add . git commit –m “initial commit” add project to git
Deploying create new app push the code migrate database run
the app or just http://app-name.herokuapp.com/ heroku create app-name git push heroku master heroku run rake db:migrate heroku run rake db:seed heroku open heroku keys:add c:\sites\.ssh\id_rsa.pub add ssh-key: login: heroku login