-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 52b544a
Showing
1,800 changed files
with
317,517 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
* | ||
!packages/* | ||
packages/*/node_modules | ||
!yarn.lock | ||
!.yarnrc | ||
!package.json | ||
!npm-packages-offline-cache | ||
!scripts/workspace-util.js | ||
!packagejsons |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
docs/ | ||
packages/mqtt | ||
packages/stream/kafka/examples | ||
packages/stream/kafka/docker | ||
packages/gateway-client-proxy/webpack.config.js | ||
packages/gateway/src/public | ||
packages/jsg-comp-core/server | ||
packages/jsg-comp-ui/gettingstarted | ||
packages/jsg-comp-ui/gulp-tasks | ||
packages/jsg-comp-ui/scripts | ||
packages/jsg-core/gulpfile.js | ||
packages/jsg-core/gulp-tasks | ||
packages/jsg-core/example-websocket | ||
packages/jsg-core/gettingstarted | ||
packages/jsg-core/test/CyclicDependencyDetection.test.js | ||
packages/jsg-ui/test | ||
packages/jsg-ui/firststeps | ||
packages/jsg-ui/example-websocket | ||
packages/jsg-ui/gettingstarted | ||
packages/jsg-ui/scripts | ||
packages/jsg-ui/src/includes.js | ||
packages/jsg-ui/src/ui/events/hammer.js | ||
**/node_modules | ||
**/coverage | ||
**/dist | ||
**/built | ||
# TODO: Fix the following | ||
packages/cli | ||
packages/machine-test-runner | ||
packages/webui | ||
packages/machine-graphmodel | ||
packages/machine-graphview | ||
packages/webcomponent/demo | ||
#packages/webcomponent/streammachine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# Typescript v1 declaration files | ||
typings/ | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
|
||
# WebStorm IDE | ||
.idea | ||
|
||
# License files | ||
license.lic |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
trailingComma: "none" | ||
tabWidth: 4 | ||
semi: true | ||
singleQuote: true | ||
useTabs: true | ||
arrowParens: "always" | ||
printWidth: 120 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
jobs: | ||
include: | ||
- language: node_js | ||
node_js: | ||
- 10.15.0 | ||
services: | ||
- docker | ||
cache: | ||
yarn: true | ||
|
||
before_install: | ||
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.15.2 | ||
- export PATH=$HOME/.yarn/bin:$PATH | ||
|
||
install: | ||
- yarn install --frozen-lockfile | ||
|
||
script: | ||
- yarn run lint | ||
- yarn workspace @cedalo/machine-core test | ||
- yarn workspace @cedalo/graphql test | ||
- yarn workspace @cedalo/webui run local-build | ||
|
||
deploy: | ||
- provider: script | ||
script: bash -c "docker login -u $DOCKER_USER -p $DOCKER_PASSWORD && node scripts/deploy.js | ||
--push --derivative dev --tag develop" | ||
on: | ||
branch: master | ||
skip_cleanup: true | ||
- provider: script | ||
script: bash -c 'docker login -u $DOCKER_USER -p $DOCKER_PASSWORD && node scripts/deploy.js | ||
--push --tag $TRAVIS_TAG' | ||
on: | ||
condition: "${TRAVIS_TAG} =~ ^[0-9]+\\.[0-9]+(\\.[0-9]+)?(-rc[0-9]+)?(-bugfix[0-9])?$" | ||
tags: true | ||
skip_cleanup: true | ||
notifications: | ||
slack: | ||
secure: IclZ9eaz/bfq6LfRSzCddkYOWM2Bp5stp6z/AsEjF7YasCaAX5nnRSxbNpyLUKdoLJ8QBm5oEIF7JltVUNnFOT3XSJ8OBaZ93xg7LJnGF2dDCNnjxkrdCPC3szT3/8NpXKNfbKyxSWwDr61flP5Tkr1MYSVCa4tsZrYkjyu3pJbQDsTg4jB3bAu7W/JvxD+m99wK+LyDhELQk6m3rcuZs5UOJn3WBIayXBZJYo5AFgDqxbst+XFZus+bWAZXFoIetX9n3ri8qEwSiMkp34YqyCvpim+YhNgSzxRrfjsZ4qMnyzmjP0a9NcGD4bVt5AzDKH3nGd9Lo3FtlL2ZvgyZPaFLE00HvqOPZqGD+EUKbX7iDwdMkJNP3b+vYJFUAW7dcTKRa4P7e95qpkFBD28PIxxoWNabHLZ+4odkmbe05tI/rOWlyP1Lunj1zrNE72eqv5OJFiVx7xmiSOlCoabnB065qO7xFyhNDEhMba3YZGPkmLMRdUuQlfHYO1gAtepmlB7OfGDiQuYm5XjehCa5p882THx1ItWyRBsxkfb4JSSr3qBQByCKs8doHvYrIhbAnM6PBB5ET+jRkwAF+MwRnsE6brJWy4rsLnmp50H4NS9KsfFLr7JemU4lz6EtrM6WvcPGblZ3yxOpvCfGTjI5UfJINIVU8c0ug8xH69YJP94= | ||
env: | ||
global: | ||
- secure: DKHfn+35GGi4pT5XZtKRhrv5e8V83C4XXmd0Cer6dqXyyLjJblxvxkiGtjvUmTvFNAlpA9/VwPHwg+zr+szerj6kaQTVHesbSfDd9qeJrDmuW+7LNbA4O0V6PAUh0IBe05t9mcK9uS1X384wDafyJcFyYG4Cnpv9C/JVIgw4IVFStfT6qi+oIDf5s/hcFJk46lOmiXbDN59PuLx31efyP8ofKKE49u6KJ4dHYaZ4wP2m832/+PxjBjqbF5pvYEPEFUdeQO/8cT+4RlyIYQJ5Sqy3j3iRF4kftSuubXYU/Vp5of5qDL1gRHGCTCitl/o56c6OdM+diyxaPViKRSjeLV2pgPg+rotErKPbBOvFt4iZ3eg4XTGypw1oTTQQ8ggnq8gArRH7MQIIawW3EwembwJB5spIu89ECibgJ+NQWte2Xn3fkzosTkT9f3hYn9G6KkjH6t6eZula/OG48W13d1GXjBmKtCaEyzJpvPNneVGpaOGo+zDfP3SbQsfbpP0PaXKtZxrJdNqko0n0vnT12m+f1h6AGCSMpberkcsRs80Sypy7xsFqvox5Jogp/eR+KIlLhiTbch3UgpuOzPZ6SUIo0bZhdfYLr3iHsOtcwdHt1DJg9cp7nuiFedmCl2fIyibmWnzpAU3QmJCtDcT84f4SpgbESB5oVPCPZxvrgPs= | ||
- secure: NyYSUVba6zPgJNGuocnQoHbD1zKbw7bxww664xev6DpmYgMCuJuAXnfmF7MwTX5hE9ohem7HypVpytJF7lFbDVJ+XWYJsHP11RaB1WkbBsq9HedBA1YUOOy3/y3C/s6Df3LA445K66fd6XUFFaGa6FpYkK1QUZXP5aMPeWkctO/5yu3PiAn7+5+unrKnsW8TtonoZPILeBv0iy0+8oT2LX0gREjh+Ni6uGTRpg34/tG6SH4wZoa7jrtKwgmZBxx1vUYgQIXRgV7koK5l0fUC2+2cuu9LzBOdox1xGHSlhADPmYREP1ic4oEcv6qEDvQKaGkLFz2o9d3UJpfGavTY/xAS5dS8I3jDkGNQyiIThIS9wS/YlDey2dI4Ies6cdJHp2x6roD49vo0xbFYGdxsNaMHbwpBDqK5KGMRNN7eNzBpVUoEYZTtYMcsLawuFu2p+S/aco+mlQVY2UZdEFpxtKeeJYnEJbI3Ady7tIQxgqmGKaVBY5B3oLqAzUGJn3WzVzQ3naVIUYEE+SeoxMqymsUbkDMcjiYqCOeGjupji5kpvhhSjBJxZIJZlkSDdBra4KSuD2To5IDYyWQEcCZqxAvJYp3mXB8KIHgUaB88duHA4rz7Kbc5VePBCDn35J6pJF+MCnkszuf2cA5pxl38XXFjs+CkaTaCGn6I7GyVyGM= |
Oops, something went wrong.