A web client for Montage.
- Copy
config.js.example
toconfig.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
- Build the application:
npm run build
- Watch for changes and auto-build the application when files change:
npm run build:dev
- Run the unit tests:
npm run test:unit
- Run the integration tests:
npm run test:integration
- Run all tests:
npm run test