A web gallery which can be navigated by moving around.
# clone repository and install dependencies
git clone https://github.com/aethmos/walking-gallery
npm upgrade && npm install
# serve development build with hot reloading at //localhost:8000
npm run develop
# compile production build
npm run build
# serve production build at //localhost:8000
npm run serve
# run tests
npm run test
# build public folder and manually copy to server
npm run build
OR
# deploy to github pages
npm run deploy_gh_pages
OR
# deploy to surge.sh
npm run deploy_surge