Last active
February 15, 2017 21:43
-
-
Save devigned/d6ddb639d39c51be43aceca6aa837aba to your computer and use it in GitHub Desktop.
Level 0 create Rails Application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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