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
68
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
80
TOKYO Rails Meetup - August 2nd 2012
tapster
1
54
TOKYO Rails Meetup - July 5th 2012
tapster
1
88
TOKYO Rails Meetup - May 10th 2012
tapster
1
71
TOKYO Rails Meetup - Aug 4th 2011
tapster
1
66
TOKYO Rails Meetup - Oct 6th 2011
tapster
1
110
TOKYO Rails Meetup - Dec 1st 2011
tapster
1
63
RailsConf 2012 - Cookpad Keynote
tapster
5
1.6k
Other Decks in Technology
See All in Technology
Data & AIの未来とLakeHouse
ishikawa_satoru
0
720
フライトコントローラPX4の中身(制御器)を覗いてみた
santana_hammer
1
140
今日から使える AWS Step Functions 小技集 / AWS Step Functions Tips
kinunori
7
650
バクラクの AI-BPO を支える AI エージェント 〜とそれを支える Bet AI Guild〜
tomoaki25
2
590
Flutter DevToolsで発見! 本番アプリのパフォーマンス問題と改善の実践
goto_tsl
1
360
こんな時代だからこそ! 想定しておきたいアクセスキー漏洩後のムーブ
takuyay0ne
4
540
手を動かしながら学ぶデータモデリング - 論理設計から物理設計まで / Data modeling
soudai
PRO
15
3.9k
隙間ツール開発のすすめ / PHP Conference Fukuoka 2025
meihei3
0
340
やり方は一つだけじゃない、正解だけを目指さず寄り道やその先まで自分流に楽しむ趣味プログラミングの探求 2025-11-15 YAPC::Fukuoka
sugyan
1
310
マイクロリブート ~ACEマインドセットで実現するアジャイル~
sony
0
240
AIエージェントは「使う」だけじゃなくて「作る」時代! 〜最新フレームワークで楽しく開発入門しよう〜
minorun365
10
1.6k
CodexでもAgent Skillsを使いたい
gotalab555
9
4.4k
Featured
See All Featured
Embracing the Ebb and Flow
colly
88
4.9k
Raft: Consensus for Rubyists
vanstee
140
7.2k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
11
920
Learning to Love Humans: Emotional Interface Design
aarron
274
41k
Code Reviewing Like a Champion
maltzj
527
40k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
2.9k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
24
1.5k
Practical Orchestrator
shlominoach
190
11k
The Straight Up "How To Draw Better" Workshop
denniskardys
239
140k
Rails Girls Zürich Keynote
gr2m
95
14k
A Modern Web Designer's Workflow
chriscoyier
697
190k
The Art of Programming - Codeland 2020
erikaheidi
56
14k
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