mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 16:30:13 +01:00
use curl instead of wget (fixes cert errors); install bson-ext to prevent newer versions from complaining about missing libpthread
parent
865d6920f7
commit
4bd0874e66
1 changed files with 7 additions and 5 deletions
12
SmartOS.md
12
SmartOS.md
|
|
@ -15,8 +15,8 @@ Install prerequisites packages
|
||||||
# pkgin install mongodb
|
# pkgin install mongodb
|
||||||
## if this failes use
|
## if this failes use
|
||||||
# pkg_add https://pkgsrc.smartos.skylime.net/packages/SmartOS/2016Q4/x86_64/All/mongodb-3.0.11.tgz
|
# pkg_add https://pkgsrc.smartos.skylime.net/packages/SmartOS/2016Q4/x86_64/All/mongodb-3.0.11.tgz
|
||||||
# pkgin install nodejs # 8
|
# pkgin install nodejs curl # 8
|
||||||
# pkgin install gmake gcc5 # build requirements
|
# pkgin install gmake gcc5 git # build requirements
|
||||||
|
|
||||||
Enable MongoDB
|
Enable MongoDB
|
||||||
|
|
||||||
|
|
@ -27,8 +27,8 @@ Enable MongoDB
|
||||||
As wekan
|
As wekan
|
||||||
|
|
||||||
$ cd
|
$ cd
|
||||||
$ wget --no-check-certificate https://releases.wekan.team/wekan-0.89.tar.gz
|
$ curl https://releases.wekan.team/wekan-0.89.tar.gz --output wekan-bundle.tar.gz
|
||||||
$ tar -xzpf wekan-0.89.tar.gz
|
$ tar -xzpf wekan-bundle.tar.gz
|
||||||
|
|
||||||
As root
|
As root
|
||||||
|
|
||||||
|
|
@ -44,6 +44,8 @@ As wekan
|
||||||
$ export CPPFLAGS="-I/opt/local/include"
|
$ export CPPFLAGS="-I/opt/local/include"
|
||||||
$ ln -s /opt/local/bin/node /opt/local/bin/nodejs
|
$ ln -s /opt/local/bin/node /opt/local/bin/nodejs
|
||||||
$ npm install fibers
|
$ npm install fibers
|
||||||
|
$ cd ~/bundle/programs/server/npm/node_modules
|
||||||
|
$ npm install bson-ext
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
|
|
||||||
|
|
@ -62,4 +64,4 @@ Now it can be run
|
||||||
|
|
||||||
## Cleanup
|
## Cleanup
|
||||||
|
|
||||||
$ pkgin rm gmake gcc5 # remove build requirements
|
$ pkgin rm gmake gcc5 git # remove build requirements
|
||||||
Loading…
Add table
Add a link
Reference in a new issue