VideoSyncer

Logo

View the Project on GitHub Softwulf/VideoSyncer

Developer Guide

How to build

Local (already downloaded source)

#!/bin/bash
#Set version here
VERSION="X.X.X"
npm i
npm run build -- -r $VERSION
cd dist/archives

Checkout from github

#!/bin/bash
git clone https://github.com/ElectronicManuel/VideoSyncer.git
cd VideoSyncer
#Set version here
VERSION="X.X.X"
git checkout "tags/v$VERSION"
npm i
npm run build -- -r $VERSION
cd dist/archives