SystemComponent "ui.dataspectsSystem"
C0792223532
[edit]
See below… |
CanBeInstalled Yes CanBeBuilt Yes CanBeDeployed Yes[edit | edit source]
Get master up-to-date, then pull it and do:
user@workstation:~/dataspects-ui$ yarn config set version-tag-prefix ""
user@workstation:~/dataspects-ui$ yarn version
Set version... JUST SEMANTIC VERSIONING, no "v"!user@workstation:~/dataspects-ui$ git commit -m "Any message"
user@workstation:~/dataspects-ui$ git push --tags
CanBeUpgraded Yes[edit | edit source]
- docker pull dataspects/ui:0.X.0
- vi docker-compose.yml
- docker-compose stop ui
- docker-compose up --detach --no-deps ui
CanBeDeveloped Yes[edit | edit source]
CanBeTested Yes[edit | edit source]
package.json
{
"name": "dataspects-ui",
...
"scripts": {
"start": "node app.js",
"build": "node_modules/gulp/bin/gulp.js build",
"test-infra": "NODE_ENV=test node_modules/mocha/bin/mocha './test/*.test.js' -exit",
"test-search": "NODE_ENV=test node_modules/mocha/bin/mocha './test/search/*.test.js' -exit",
"test-dataspects-relevance": "NODE_ENV=test node_modules/mocha/bin/mocha './test/dataspects-relevance/*.test.js' -exit"
},
...
}
yarn test-infra yarn test-search yarn test-dataspects-relevance