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
63
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
74
TOKYO Rails Meetup - August 2nd 2012
tapster
1
47
TOKYO Rails Meetup - July 5th 2012
tapster
1
78
TOKYO Rails Meetup - May 10th 2012
tapster
1
64
TOKYO Rails Meetup - Aug 4th 2011
tapster
1
56
TOKYO Rails Meetup - Oct 6th 2011
tapster
1
100
TOKYO Rails Meetup - Dec 1st 2011
tapster
1
52
RailsConf 2012 - Cookpad Keynote
tapster
5
1.6k
Other Decks in Technology
See All in Technology
関東Kaggler会LT: 人狼コンペとLLM量子化について
nejumi
3
600
インフラをつくるとはどういうことなのか、 あるいはPlatform Engineeringについて
nwiizo
5
2.6k
生成 AI プロダクトを育てる技術 〜データ品質向上による継続的な価値創出の実践〜
icoxfog417
PRO
2
190
JEDAI Meetup! Databricks AI/BI概要
databricksjapan
0
170
RECRUIT TECH CONFERENCE 2025 プレイベント【高橋】
recruitengineers
PRO
0
160
自動テストの世界に、この5年間で起きたこと
autifyhq
10
8.6k
PHPで印刷所に入稿できる名札データを作る / Generating Print-Ready Name Tag Data with PHP
tomzoh
0
120
Swiftの “private” を テストする / Testing Swift "private"
yutailang0119
0
130
分解して理解する Aspire
nenonaninu
1
330
『衛星データ利用の方々にとって近いようで触れる機会のなさそうな小話 ~ 衛星搭載ソフトウェアと衛星運用ソフトウェア (実物) を動かしながらわいわいする編 ~』 @日本衛星データコミニティ勉強会
meltingrabbit
0
150
エンジニアの育成を支える爆速フィードバック文化
sansantech
PRO
3
1.1k
データ資産をシームレスに伝達するためのイベント駆動型アーキテクチャ
kakehashi
PRO
2
560
Featured
See All Featured
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.1k
The Pragmatic Product Professional
lauravandoore
32
6.4k
For a Future-Friendly Web
brad_frost
176
9.5k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
33
2.8k
Embracing the Ebb and Flow
colly
84
4.6k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
114
50k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
46
2.3k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
30
4.6k
Reflections from 52 weeks, 52 projects
jeffersonlam
348
20k
Git: the NoSQL Database
bkeepers
PRO
427
64k
Bash Introduction
62gerente
611
210k
VelocityConf: Rendering Performance Case Studies
addyosmani
328
24k
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