This is the Versioned admin web UI that talks to the Versioned REST API.
Documentation is available at versioned-doc
A hosted and managed version of this UI is available at versioned.io
npm install
npm run dev
open http://localhost:8080
To create a production build, run npm run build
VUE_APP_ALGOLIASEARCH_APPLICATION_ID=...
VUE_APP_API_URL=https://api.versioned.io/v1
VUE_APP_DOCS_URL=https://github.com/versioned/versioned-doc
VUE_APP_ENV=production
VUE_APP_GOOGLE_API_KEY=...
heroku config:set VUE_APP_API_URL=https://name-of-versioned-api-app.herokuapp.com/v1
Running:
npm run test:unit --watch
The dedicated_space.js spec requires these environment variables:
CYPRESS_MONGODB_URL
CYPRESS_ALGOLIASEARCH_APPLICATION_ID
CYPRESS_ALGOLIASEARCH_API_KEY
Running in the browser (all specs or single spec):
npm run test:e2e
Running headless:
npm run test:e2e --headless
Running single spec headless:
npm run test:e2e --headless --spec tests/e2e/specs/dedicated_space.js