mongodb 를 설치하지 않으면, 처음 실행하고 회원가입 할 때 에러가 발생합니다. [CODE]$ git clone https://github.com/alexyoung/nodepad.git nodepad $ cd nodepad $ npm install $ node app[/CODE]
.vimrc 에 아무 내용없이 아래 내용만 들어가도 됩니다. [CODE]$ vi .vimrc set nocompatible " be iMproved filetype off " required!
set rtp+=~/.vim/bundle/vundle/ call vundle#rc()
" let Vundle manage Vundle " required! Bundle 'gmarik/vundle'
" My Bundles here: "
" original repos on github Bundle 'tpope/vim-fugitive' Bundle 'Lokaltog/vim-easymotion' Bundle 'rstacruz/sparkup', {'rtp': 'vim/'} Bundle 'tpope/vim-rails.git' " vim-scripts repos Bundle 'L9' Bundle 'FuzzyFinder' " non github repos Bundle 'git://git.wincent.com/command-t.git' " ...
filetype plugin indent on " required! " " Brief help " :BundleList - list configured bundles " :BundleInstall(!) - install(update) bundles " :BundleSearch(!) foo - search(or refresh cache first) for foo " :BundleClean(!) - confirm(or auto-approve) removal of unused bundles " " see :h vundle for more details or wiki for FAQ " NOTE: comments after Bundle command are not allowed..[/CODE]