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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
tapster
June 07, 2012
Technology
1
70
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
84
TOKYO Rails Meetup - August 2nd 2012
tapster
1
56
TOKYO Rails Meetup - July 5th 2012
tapster
1
92
TOKYO Rails Meetup - May 10th 2012
tapster
1
73
TOKYO Rails Meetup - Aug 4th 2011
tapster
1
71
TOKYO Rails Meetup - Oct 6th 2011
tapster
1
110
TOKYO Rails Meetup - Dec 1st 2011
tapster
1
65
RailsConf 2012 - Cookpad Keynote
tapster
5
1.6k
Other Decks in Technology
See All in Technology
「使いにくい」も「運用疲れ」も卒業する UIデザイナーとエンジニアが創る持続可能な内製開発
nrinetcom
PRO
0
400
primeNumber DATA MANAGEMENT CAMP #2:
masatoshi0205
1
570
パネルディスカッション資料 (at Tableau Now! - 2026-02-26)
yoshitakaarakawa
0
440
Scrum Fest Morioka 2026
kawaguti
PRO
2
660
【Developers Summit 2026】Memory Is All You Need:コンテキストの「最適化」から「継続性」へ ~RAGを進化させるメモリエンジニアリングの最前線~
shisyu_gaku
5
760
OCI技術資料 : 外部接続 VPN接続 詳細
ocise
1
10k
Sansan Engineering Unit 紹介資料
sansan33
PRO
1
4k
ブログの作成に音声AIツールを使って音声入力しようとした話
smt7174
1
190
AIで 浮いた時間で 何をする? 2026春 #devsumi
konifar
16
3.3k
WBCの解説は生成AIにやらせよう - 生成AIで野球解説者AI Agentを実現する / Baseball Commentator AI Agent for Gemini
shinyorke
PRO
0
110
Master Dataグループ紹介資料
sansan33
PRO
1
4.4k
Digitization部 紹介資料
sansan33
PRO
1
6.9k
Featured
See All Featured
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
270
Why Our Code Smells
bkeepers
PRO
340
58k
Between Models and Reality
mayunak
1
210
[RailsConf 2023] Rails as a piece of cake
palkan
59
6.3k
The Anti-SEO Checklist Checklist. Pubcon Cyber Week
ryanjones
0
82
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.3k
What does AI have to do with Human Rights?
axbom
PRO
0
2k
Effective software design: The role of men in debugging patriarchy in IT @ Voxxed Days AMS
baasie
0
240
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
Odyssey Design
rkendrick25
PRO
2
520
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
254
22k
Organizational Design Perspectives: An Ontology of Organizational Design Elements
kimpetersen
PRO
1
620
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