Mac - jean/wekan GitHub Wiki
Docker
Source
- Install XCode
- Install Node 8.15.0
- Use rebuild-wekan.sh script to first install Wekan dependencies and then build Wekan.
- Change to Wekan directory:
cd wekan
- Run meteor:
meteor
- this runs node in http://localhost:3000 and mongo at http://localhost:3001 .
- In another bash shell, run:
meteor mongo
- this connects to MongoDB CLI
- Alternatively, to use custom ports, use for example
meteor --port 4000
that runs node in port 4000 and mongo in next port 4001.