mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
export PATH=~/.npm-global/bin:$PATH
Build
go get -u github.com/chonglou/arche
cd $GOPATH/src/github.com/chonglou/arche
make init
make clean
make
create database(for postgresql)
CREATE DATABASE db-name WITH ENCODING = 'UTF8';
CREATE USER user-name WITH PASSWORD 'change-me';
GRANT ALL PRIVILEGES ON DATABASE db-name TO user-name;
Generate a random key
openssl rand -base64 32
Atom plugins
enable autosave
go-plus
file-icons
atom-beautify(enable newline, beautify on save; need python-sqlparse)