Skip to content
This repository has been archived by the owner on Oct 15, 2021. It is now read-only.

Softwulf/VideoSyncer

Repository files navigation

Known Vulnerabilities

Documentation

Documentation can be found here

How to build

Local (already downloaded source)

#!/bin/bash
VERSION="" # insert version here (eg. 1.2.3)
SENTRY_RELEASE=VideoSyncer@v$VERSION
SENTRY_PROJECT=videosyncer
SENTRY_ENV=production
npm install
npm run build -- --env.prod --env.version=v$VERSION
cd dist/archives

Checkout from github

#!/bin/bash
VERSION="" # insert version here (eg. 1.2.3)
git clone https://github.com/SoftWulf/VideoSyncer.git
cd VideoSyncer
git checkout "tags/v$VERSION"
SENTRY_RELEASE=VideoSyncer@v$VERSION
SENTRY_PROJECT=videosyncer
SENTRY_ENV=production
npm install
npm run build -- --env.prod --env.version=v$VERSION
cd dist/archives