npm install # install dependenciesthen
npx gulp buildnpm install # install dependenciesthen
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=100000in 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


