Skip to content

Instantly share code, notes, and snippets.

View GregorioReche's full-sized avatar
🍺
Home Brewing

Gregorio Reche GregorioReche

🍺
Home Brewing
View GitHub Profile
@GregorioReche
GregorioReche / os-x-setup-commands.sh
Last active May 14, 2020 01:36 — forked from w3cj/os-x-setup-commands.sh
Mac OS web development setup
xcode-select --install
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
brew cask install iterm2
# update iterm2 settings -> colors, keep directory open new shell, keyboard shortcuts
brew install bash # latest version of bash
# set brew bash as default shell
brew install fortune
brew install cowsay
brew install git
const path = require('path');
module.exports = {
config: path.resolve('./src/database/config/', 'config.json'),
'models-path': path.resolve('./src/database/models/'),
'seeders-path': path.resolve('./src/database/seeders/'),
'migrations-path': path.resolve('./src/database/migrations/'),
};
HOST_NAME=Grego
source ~/.nvm/nvm.sh
nvm use stable
shopt -s autocd
shopt -s histappend
export PATH=$PATH:$HOME/bin
export HISTSIZE=5000