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
68
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
いまならこう作りたい AWSコンテナ[本格]入門ハンズオン 〜2024年版 ハンズオンの構想〜
horsewin
9
2.1k
AWS CDKでデータリストアの運用、どのように設計する?~Aurora・EFSの実践事例を紹介~/aws-cdk-data-restore-aurora-efs
mhrtech
4
650
「 SharePoint 難しい」ってよく聞くけど、そんなに言うなら8歳の息子に試してもらった
taichinakamura
1
620
サイバーエージェントにおける生成AIのリスキリング施策の取り組み / cyber-ai-reskilling
cyberagentdevelopers
PRO
2
200
Product Engineer Night #6プロダクトエンジニアを育む仕組み・施策
hacomono
PRO
1
470
【技術書典17】OpenFOAM(自宅で極める流体解析)2次元円柱まわりの流れ
kamakiri1225
0
210
Oracle Cloud Infrastructureデータベース・クラウド:各バージョンのサポート期間
oracle4engineer
PRO
27
12k
Amazon FSx for NetApp ONTAPを利用するにあたっての要件整理と設計のポイント
non97
1
160
APIテスト自動化の勘所
yokawasa
7
4.1k
Figma Dev Modeで進化するデザインとエンジニアリングの協働 / figma-with-engineering
cyberagentdevelopers
PRO
1
430
IaC運用を楽にするためにCDK Pipelinesを導入したけど、思い通りにいかなかった話
smt7174
1
110
VPC間の接続方法を整理してみた #自治体クラウド勉強会
non97
1
840
Featured
See All Featured
Designing for humans not robots
tammielis
249
25k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
364
22k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
26
2.1k
Build The Right Thing And Hit Your Dates
maggiecrowley
32
2.4k
Code Reviewing Like a Champion
maltzj
519
39k
Building Applications with DynamoDB
mza
90
6.1k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
27
1.9k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
92
16k
The Invisible Side of Design
smashingmag
297
50k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Typedesign – Prime Four
hannesfritz
39
2.4k
What's new in Ruby 2.0
geeforr
342
31k
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