Skip to content
Romain Gay edited this page Sep 6, 2016 · 3 revisions

OSX

# for brew users
$> brew install nodejs npm

# install & build app
$> make install

# (optional) watch source (livereload) & build
$> gulp watch # -d for debug

# run zspin
$> gulp run

# if you want to make a release
$> gulp release -p [platform] # -d for debug, platform is [osx64, linux64, win64]

Linux

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs build-essential
make install
PLATFORM=linux64 make release

Windows

Coming...

Clone this wiki locally