npm install # install dependencies
then
npx gulp build
npm install # install dependencies
then
npx gulp
This gonna build all project and launch Browser
if launch a Error in Linux
like
System limit for number of file watchers reached, watch 'src'
solution for linux:
sudo sysctl -w fs.inotify.max_user_watches=100000
in the file /etc/sys.conf
put:
fs.inotify.max_user_watches = 100000
or create /etc/sysctl.d/10-user-watches.conf
with
fs.inotify.max_user_watches = 100000