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
260
The Why's of RailsGirls
rg_ukraine
0
250
introduction to ruby
rg_ukraine
3
8.3k
where to go next
rg_ukraine
0
140
Other Decks in Programming
See All in Programming
初学者でも今すぐできる、Claude Codeの生産性を10倍上げるTips
s4yuba
16
12k
The Evolution of Enterprise Java with Jakarta EE 11 and Beyond
ivargrimstad
0
150
20250704_教育事業におけるアジャイルなデータ基盤構築
hanon52_
5
890
ふつうの技術スタックでアート作品を作ってみる
akira888
1
1.1k
型で語るカタ
irof
0
390
High-Level Programming Languages in AI Era -Human Thought and Mind-
hayat01sh1da
PRO
0
830
生成AI時代のコンポーネントライブラリの作り方
touyou
1
250
AI Agent 時代のソフトウェア開発を支える AWS Cloud Development Kit (CDK)
konokenj
4
550
Google Agent Development Kit でLINE Botを作ってみた
ymd65536
2
260
MDN Web Docs に日本語翻訳でコントリビュートしたくなる
ohmori_yusuke
1
130
GitHub Copilot and GitHub Codespaces Hands-on
ymd65536
2
150
코딩 에이전트 체크리스트: Claude Code ver.
nacyot
0
850
Featured
See All Featured
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Documentation Writing (for coders)
carmenintech
72
4.9k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
970
The Power of CSS Pseudo Elements
geoffreycrofte
77
5.9k
Building a Modern Day E-commerce SEO Strategy
aleyda
42
7.4k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
138
34k
The Cult of Friendly URLs
andyhume
79
6.5k
Balancing Empowerment & Direction
lara
1
440
Music & Morning Musume
bryan
46
6.7k
Gamification - CAS2011
davidbonilla
81
5.4k
Making Projects Easy
brettharned
116
6.3k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
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