irllabs / archive_socialvr-browser

1 stars 0 forks source link

NOTE

This repo is for archival purposes only. The most resent version of this repository has:



Social VR Editing Tool

About

Browser based editor tool for the Social VR project.

Tools Used

Installation and Usage

Local Builds

Deploy

At the moment, deployments are manual. These scripts will deploy whatever is in your current directory so it is important to be careful.

Extra safe prod deployment (deploy what is currently in master)
#!/bin/bash

# clone single branch of repo without history
git clone --depth 1 --branch master git@github.com:cmuartfab/socialvr-browser.git;

# move into cloned repo
cd socialvr-browser;

# install dependencies
npm install;

# build project
npm run build:prod;

# ls -al ./dist;

# copy to prod server
scp -r ./dist/* irlab@irl.studio:/home/irlab/socialvr.irl.studio;

Architecture