Skip to content

Instantly share code, notes, and snippets.

@devigned
Last active February 15, 2017 21:43
Show Gist options
  • Save devigned/d6ddb639d39c51be43aceca6aa837aba to your computer and use it in GitHub Desktop.
Save devigned/d6ddb639d39c51be43aceca6aa837aba to your computer and use it in GitHub Desktop.
Level 0 create Rails Application
git clone [email protected]:YOUR_USER/level0.git
gem install bundler rails
rails new level0
cd level0
# add a simple hello world index page
printf "<html><head></head><h1>Hello World</h1></html>\n" > public/index.html
rails server
# you should now be able to open http://localhost:3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment