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
TOKYO Rails Meetup - June 7th 2012
Search
tapster
June 07, 2012
Technology
1
61
TOKYO Rails Meetup - June 7th 2012
Tokyo Rails #11 Set-up-a-thon
tapster
June 07, 2012
Tweet
Share
More Decks by tapster
See All by tapster
Cookpad Coder School Vietnam 20160718
tapster
0
69
TOKYO Rails Meetup - August 2nd 2012
tapster
1
43
TOKYO Rails Meetup - July 5th 2012
tapster
1
74
TOKYO Rails Meetup - May 10th 2012
tapster
1
62
TOKYO Rails Meetup - Aug 4th 2011
tapster
1
55
TOKYO Rails Meetup - Oct 6th 2011
tapster
1
100
TOKYO Rails Meetup - Dec 1st 2011
tapster
1
50
RailsConf 2012 - Cookpad Keynote
tapster
5
1.6k
Other Decks in Technology
See All in Technology
Introduction to Works of ML Engineer in LY Corporation
lycorp_recruit_jp
0
130
AI前提のサービス運用ってなんだろう?
ryuichi1208
8
1.4k
OCI 運用監視サービス 概要
oracle4engineer
PRO
0
4.8k
Incident Response Practices: Waroom's Features and Future Challenges
rrreeeyyy
0
160
障害対応指揮の意思決定と情報共有における価値観 / Waroom Meetup #2
arthur1
5
480
100 名超が参加した日経グループ横断の競技型 AWS 学習イベント「Nikkei Group AWS GameDay」の紹介/mediajaws202411
nikkei_engineer_recruiting
1
170
OCI Network Firewall 概要
oracle4engineer
PRO
0
4.1k
B2B SaaSから見た最近のC#/.NETの進化
sansantech
PRO
0
860
これまでの計測・開発・デプロイ方法全部見せます! / Findy ISUCON 2024-11-14
tohutohu
3
370
Lambdaと地方とコミュニティ
miu_crescent
2
370
ISUCONに強くなるかもしれない日々の過ごしかた/Findy ISUCON 2024-11-14
fujiwara3
8
870
サイバーセキュリティと認知バイアス:対策の隙を埋める心理学的アプローチ
shumei_ito
0
390
Featured
See All Featured
Ruby is Unlike a Banana
tanoku
97
11k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
It's Worth the Effort
3n
183
27k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
25
1.8k
KATA
mclloyd
29
14k
Java REST API Framework Comparison - PWX 2021
mraible
PRO
28
8.2k
Designing the Hi-DPI Web
ddemaree
280
34k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
126
18k
Raft: Consensus for Rubyists
vanstee
136
6.6k
Faster Mobile Websites
deanohume
305
30k
How to Ace a Technical Interview
jacobian
276
23k
GraphQLとの向き合い方2022年版
quramy
43
13k
Transcript
TOKYO RAILS #11 6/7/2012
SET-UP-A-THON
BEFORE WE START...
http://confreaks.com/events/railsconf2012
None
SET-UP-A-THON
OVERALL GOAL Get up and running with Rails on your
laptop and run the a simple rails site locally!
BASICS & TERMINOLOGY client browser request >> web server >>
content to browser
tonight our focus is getting your laptop set up to
take the role of the server so you can run things “locally”
1. Install Git 2. Install Ruby 3. Install Rails 4.
running on http://localhost:3000
git is a source code management tool - makes it
easy to work with and collaborate with others 1. GIT
ruby is the language, and rails is the framework we’ll
be using 2. RUBY, 3. RAILS
you’ll be running the server on your laptop at http://localhost:
3000 4. LOCALHOST
the terminal is the tool you’ll be using to interact
with your system. To issue commands and start and stop the server THE TERMINAL
http://installfest.railsbridge.org/installfest/
https://github.com/tokyorails/tokyorails CLONE TOKYORAILS
git clone https://github.com/tokyorails/tokyorails.git cd tokyorails IN THE TERMINAL
bundle install --without test IN THE TERMINAL
cp config/database.yml.sample config/database.yml rake db:migrate IN THE TERMINAL
None
None