Skip to content
This repository has been archived by the owner on Mar 1, 2020. It is now read-only.
/ montage-web Public archive

Web client for Meedan Montage, a collaborative video annotation app

Notifications You must be signed in to change notification settings

meedan/montage-web

Repository files navigation

Montage Web

Build Status

A web client for Montage.

Usage

  • Copy config.js.example to config.js and define your settings
  • Build with Docker: $ docker build -t montage:web .
  • Run the server with Docker: $ docker run -p 8080:8080 montage:web
  • Go to your browser and open http://localhost:8080

Developing

  • Build the application: npm run build
  • Watch for changes and auto-build the application when files change: npm run build:dev

Tests

  • Run the unit tests: npm run test:unit
  • Run the integration tests: npm run test:integration
  • Run all tests: npm run test