LoginSignup
1
0

More than 5 years have passed since last update.

CentOS 6.6にcrowi-plusをインストールする

Posted at

インストール

# yum install git
# git clone https://github.com/creationix/nvm.git ~/.nvm
# source ~/.nvm/nvm.sh
# vi ~/.bash_profile

if [[ -s ~/.nvm/nvm.sh ]];
 then source ~/.nvm/nvm.sh
fi

# nvm install 6.11.4
# nvm alias default 6.11.4
# npm install -g npm
# npm install -g yarn@1.1.0

# vi /etc/yum.repos.d/mongodb.repo

[mongodb]
name=MongoDB Repository
baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/
gpgcheck=0
enabled=1

# yum install mongodb-org
# service mongod start
# chkconfig --add mongod 

# git clone https://github.com/weseek/crowi-plus.git
# cd crowi-plus
# yarn

# npm start

アクセス先はhttp://x.x.x.x:3000/

プラグイン

# yarn install crowi-plugin-lsx
# yarn install crowi-plugin-pukiwiki-like-linker

# npm start

lsxへの要望

ユーザーのメモをlsxで一覧表示できないかな?
Aさん
2017/10/11
2017/10/10
Bさん
2017/10/05
2017/10/01
とかしたい。

ファイルアップロードを許可

# vi .bash_profile
export FILE_UPLOAD=local

# npm start
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0