mirror of
https://github.com/CopterExpress/clover.git
synced 2026-05-26 21:19:35 +00:00
9 lines
168 B
Bash
Executable File
9 lines
168 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# script for running gzweb
|
|
# usage: ./gzweb [<port>]
|
|
|
|
export NVM_DIR=$HOME/.nvm
|
|
source $NVM_DIR/nvm.sh
|
|
npm start --prefix $HOME/gzweb -p ${1-8080}
|