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
Чего вы не знали о строках в Python – Василий Рябов, PythoNN
sobolevn
0
160
ててべんす独演会〜Flowの全てを語ります〜
tbsten
1
220
アメ車でサンノゼを走ってきたよ!
s_shimotori
0
140
Advance Your Career with Open Source
ivargrimstad
0
330
Pull-Requestの内容を1クリックで動作確認可能にするワークフロー
natmark
2
450
Model Pollution
hschwentner
1
180
実践AIチャットボットUI実装入門
syumai
7
2.5k
なぜGoのジェネリクスはこの形なのか? Featherweight Goが明かす設計の核心
ryotaros
7
1k
Local Peer-to-Peer APIはどのように使われていくのか?
hal_spidernight
2
450
プロダクト開発をAI 1stに変革する〜SaaS is dead時代で生き残るために〜 / AI 1st Product Development
kobakei
0
490
Web技術を最大限活用してRAW画像を現像する / Developing RAW Images on the Web
ssssota
2
1.2k
2025年版 サーバーレス Web アプリケーションの作り方
hayatow
23
25k
Featured
See All Featured
VelocityConf: Rendering Performance Case Studies
addyosmani
332
24k
A Modern Web Designer's Workflow
chriscoyier
697
190k
Unsuck your backbone
ammeep
671
58k
Speed Design
sergeychernyshev
32
1.1k
Making the Leap to Tech Lead
cromwellryan
135
9.5k
How to Ace a Technical Interview
jacobian
280
24k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.1k
Typedesign – Prime Four
hannesfritz
42
2.8k
Navigating Team Friction
lara
189
15k
4 Signs Your Business is Dying
shpigford
185
22k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
188
55k
How To Stay Up To Date on Web Technology
chriscoyier
791
250k
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