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
| brew install v8@3.15 | |
| bundle config build.libv8 --with-system-v8 | |
| bundle config build.therubyracer --with-v8-dir=$(brew --prefix v8@3.15) | |
| bundle install |
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
| # --- Setup.sh (Rails) --- | |
| ##!/bin/sh | |
| bundle install | |
| # set configuration | |
| cp -n config/database.yml.dist config/database.yml | |
| echo "- default config copied" | |
| $EDITOR config/database.yml |
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
| #git config --global color.ui true | |
| #Terminal colors | |
| export CLICOLOR=1 | |
| export LSCOLORS=GxFxCxDxBxegedabagaced | |
| export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' | |
| ## Common | |
| alias gst='git status' | |
| alias ga='git add . ; git add -u' |