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
{ | |
"tagname-lowercase": true, | |
"attr-lowercase": true, | |
"attr-value-double-quotes": true, | |
"attr-value-not-empty": true, | |
"attr-no-duplication": true, | |
"doctype-first": false, | |
"tag-pair": true, | |
"tag-self-close": false, | |
"spec-char-escape": true, |
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
brew update && brew doctor # Repeat, until you've done *all* the Dr. has ordered! | |
brew install postgresql # You'll need postgres to do this... you may also need to 'initdb' as well. Google it. | |
brew install elixir | |
mix local.hex | |
createuser -d postgres # create the default 'postgres' user that Chris McCord seems to like -- I don't create mine w/a pw... | |
# Install the latest Phoenix. It will give us the command `mix phoenix.new` | |
mix archive.install https://github.com/phoenixframework/archives/raw/master/phoenix_new.ez |