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
64
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
78
TOKYO Rails Meetup - August 2nd 2012
tapster
1
52
TOKYO Rails Meetup - July 5th 2012
tapster
1
86
TOKYO Rails Meetup - May 10th 2012
tapster
1
69
TOKYO Rails Meetup - Aug 4th 2011
tapster
1
63
TOKYO Rails Meetup - Oct 6th 2011
tapster
1
110
TOKYO Rails Meetup - Dec 1st 2011
tapster
1
62
RailsConf 2012 - Cookpad Keynote
tapster
5
1.6k
Other Decks in Technology
See All in Technology
Snowflake Intelligence × Document AIで“使いにくいデータ”を“使えるデータ”に
kevinrobot34
1
110
Unlocking the Power of AI Agents with LINE Bot MCP Server
linedevth
0
110
要件定義・デザインフェーズでもAIを活用して、コミュニケーションの密度を高める
kazukihayase
0
120
Automating Web Accessibility Testing with AI Agents
maminami373
0
1.3k
2025/09/16 仕様駆動開発とAI-DLCが導くAI駆動開発の新フェーズ
masahiro_okamura
0
120
これでもう迷わない!Jetpack Composeの書き方実践ガイド
zozotech
PRO
0
1.1k
dbt開発 with Claude Codeのためのガードレール設計
10xinc
2
1.3k
スマートファクトリーの第一歩 〜AWSマネージドサービスで 実現する予知保全と生成AI活用まで
ganota
2
310
Webアプリケーションにオブザーバビリティを実装するRust入門ガイド
nwiizo
7
880
OCI Oracle Database Services新機能アップデート(2025/06-2025/08)
oracle4engineer
PRO
0
180
Snowflake×dbtを用いたテレシーのデータ基盤のこれまでとこれから
sagara
0
120
人工衛星のファームウェアをRustで書く理由
koba789
15
8.2k
Featured
See All Featured
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
8
530
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
850
The Pragmatic Product Professional
lauravandoore
36
6.9k
A better future with KSS
kneath
239
17k
The Language of Interfaces
destraynor
161
25k
Side Projects
sachag
455
43k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.4k
Docker and Python
trallard
46
3.6k
Writing Fast Ruby
sferik
628
62k
Gamification - CAS2011
davidbonilla
81
5.4k
Fireside Chat
paigeccino
39
3.6k
RailsConf 2023
tenderlove
30
1.2k
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