Last active
June 2, 2016 23:30
-
-
Save christian-acuna/079ee6e979a926e0a85585fb5b314d2e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# rails _Version.Number_ new <app_name> | |
# cd <app_name> | |
# ls -p // -p, --indicator-style=slash append "/" indicator to directories | |
# rake about | |
# git init | |
# git add . | |
# in .gitignore .idea/* | |
# git commit -m "Initalize repository" | |
# in Gemfile: | |
ruby '2.2.2' # Ruby version you're running | |
rails '4.2.1' # Rails version for this app | |
# use Haml for templates | |
gem 'haml' | |
$ bundle install --binstubs .bundle/bin | |
$ rails s // rails server webrick (if other servers are installed) | |
$ pwd | |
$ mux open <name> | |
## layout: f98d,230x59,0,0[230x40,0,0,0,230x18,0,41,4] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment