You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 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