SystemComponent "ui.dataspectsSystem"
C0792223532
Jump to navigation
Jump to search
|
CanBeInstalled Yes CanBeBuilt Yes CanBeDeployed Yes
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
- docker pull dataspects/ui:0.X.0
- vi docker-compose.yml
- docker-compose stop ui
- docker-compose up --detach --no-deps ui
CanBeDeveloped Yes
CanBeTested Yes
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