├── .gitignore ├── LICENSE ├── README.adoc ├── couch.provider.js ├── couchUpdateViews.js ├── doc ├── curlExamples.txt └── install.adoc ├── examples ├── curl │ ├── 0.getExecutionServers.sh │ ├── 1.createDocumentExample.sh │ ├── 2.addData.sh │ ├── 3.submit.sh │ ├── 4.jobstatus.sh │ ├── 5.getProcessedData.sh │ ├── 6.getDocument.sh │ └── 7.getUserDocuments.sh ├── data │ ├── example.json │ └── pic.jpg └── node │ ├── createNewJob.js │ └── package.json ├── hapitest.js ├── migrateUp.js ├── package.json ├── setUpDevelopment.sh ├── src ├── clusterpost-app │ ├── README.md │ ├── get.js │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── post.js │ └── test.js ├── clusterpost-auth │ ├── index.js │ ├── package-lock.json │ └── package.json ├── clusterpost-execution │ ├── README.md │ ├── conf.json.in │ ├── engine_awsecs.js │ ├── engine_lsf.js │ ├── engine_pbs.js │ ├── engine_slurm.js │ ├── engine_unix.js │ ├── executionserver.methods.js │ ├── index.js │ ├── index.js.in │ ├── jobdelete.js │ ├── jobkill.js │ ├── jobstatus.js │ ├── jobsubmit.js │ ├── package-lock.json │ ├── package.json │ ├── postinstall.js │ └── request_token.js ├── clusterpost-fs │ ├── .gitignore │ ├── index.js │ ├── package-lock.json │ └── package.json ├── clusterpost-lib │ ├── README.md │ ├── index.js │ ├── package-lock.json │ └── package.json ├── clusterpost-list-react │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── .travis.yml │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ │ ├── .eslintrc │ │ ├── clusterpost-dashboard.js │ │ ├── clusterpost-jobs.js │ │ ├── clusterpost-service.js │ │ ├── clusterpost-software.js │ │ ├── clusterpost-tokens.js │ │ ├── index.js │ │ └── test.js ├── clusterpost-list │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── clusterpost-list.min.css │ │ └── clusterpost-list.min.js │ ├── package.json │ └── src │ │ ├── clusterpost-app.directive.html │ │ ├── clusterpost-app.directive.js │ │ ├── clusterpost-es-admin.directive.html │ │ ├── clusterpost-es-admin.directive.js │ │ ├── clusterpost-jobs.directive.html │ │ ├── clusterpost-jobs.directive.js │ │ ├── clusterpost-list.directive.js │ │ ├── clusterpost-list.module.js │ │ └── clusterpost-list.service.js ├── clusterpost-model │ ├── index.js │ ├── package-lock.json │ └── package.json ├── clusterpost-provider │ ├── README.md │ ├── clusterprovider.methods.js │ ├── couchUpdateViews.js │ ├── cronprovider.js │ ├── dataprovider.handlers.js │ ├── dataprovider.routes.js │ ├── executionserver.handlers.js │ ├── executionserver.routes.js │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── views │ │ ├── getJob.json │ │ ├── searchJob.json │ │ └── software.json ├── clusterpost-server │ ├── README.md │ ├── checkConfiguration.js │ ├── conf.default.json │ ├── index.js │ ├── migrateUp.js.in │ ├── package-lock.json │ └── package.json ├── clusterpost-static │ ├── clusterpost-public │ │ ├── .browserlistrc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ ├── fibers.png │ │ │ │ ├── icosahedron.png │ │ │ │ ├── segmentation.png │ │ │ │ └── subcortical.png │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── src │ │ │ ├── App.js │ │ │ ├── App.test.js │ │ │ ├── bootstrap.min.css │ │ │ ├── index.css │ │ │ ├── index.js │ │ │ ├── nav-bar.js │ │ │ ├── redux │ │ │ ├── navbar-reducer.js │ │ │ ├── reducers.js │ │ │ └── store.js │ │ │ └── serviceWorker.js │ ├── index.js │ ├── package-lock.json │ └── package.json ├── couch-provider │ ├── README.md │ ├── couch.provider.js │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── test.js ├── couch-update-views │ ├── README.md │ ├── couchUpdateViews.js.in │ ├── index.js │ ├── migrateUp.js │ ├── package-lock.json │ ├── package.json │ ├── postinstall.js │ ├── test.js │ ├── updateDesignDocument.js │ ├── views │ │ └── searchUser.json │ ├── views2 │ │ └── searchUser.json │ └── views3 │ │ └── searchUser3.json ├── hapi-jwt-couch-lib │ ├── .gitignore │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── test.js │ └── testserver.js ├── hapi-jwt-couch │ ├── README.md │ ├── couchUpdateViews.js │ ├── index.js │ ├── jwtauth.handlers.js │ ├── jwtauth.routes.js │ ├── package-lock.json │ ├── package.json │ ├── test │ │ ├── server.js │ │ └── test.js │ └── views │ │ └── user.json └── react-hapi-jwt-auth │ ├── .babelrc │ ├── .editorconfig │ ├── .eslintrc │ ├── .gitignore │ ├── .travis.yml │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ └── src │ ├── .eslintrc │ ├── index.js │ ├── jwt-auth-interceptor.js │ ├── jwt-auth-profile.js │ ├── jwt-auth-reducer.js │ ├── jwt-auth-service.js │ ├── jwt-auth-users.js │ ├── jwt-auth.js │ ├── styles.css │ └── test.js └── test ├── conf.test.json ├── createNewJob.js ├── createNewJobOuputDir.js ├── createNewJobRemoteData.js ├── data └── gravitational-waves-simulation.jpg ├── downloadTokenTest.js ├── package-lock.json ├── package.json ├── sharedJobTest.js ├── test.js ├── tokensTest.js ├── userAuthTest.js └── userResetTest.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/README.adoc -------------------------------------------------------------------------------- /couch.provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/couch.provider.js -------------------------------------------------------------------------------- /couchUpdateViews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/couchUpdateViews.js -------------------------------------------------------------------------------- /doc/curlExamples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/doc/curlExamples.txt -------------------------------------------------------------------------------- /doc/install.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/doc/install.adoc -------------------------------------------------------------------------------- /examples/curl/0.getExecutionServers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/curl/0.getExecutionServers.sh -------------------------------------------------------------------------------- /examples/curl/1.createDocumentExample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/curl/1.createDocumentExample.sh -------------------------------------------------------------------------------- /examples/curl/2.addData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/curl/2.addData.sh -------------------------------------------------------------------------------- /examples/curl/3.submit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/curl/3.submit.sh -------------------------------------------------------------------------------- /examples/curl/4.jobstatus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/curl/4.jobstatus.sh -------------------------------------------------------------------------------- /examples/curl/5.getProcessedData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/curl/5.getProcessedData.sh -------------------------------------------------------------------------------- /examples/curl/6.getDocument.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/curl/6.getDocument.sh -------------------------------------------------------------------------------- /examples/curl/7.getUserDocuments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/curl/7.getUserDocuments.sh -------------------------------------------------------------------------------- /examples/data/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/data/example.json -------------------------------------------------------------------------------- /examples/data/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/data/pic.jpg -------------------------------------------------------------------------------- /examples/node/createNewJob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/node/createNewJob.js -------------------------------------------------------------------------------- /examples/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/examples/node/package.json -------------------------------------------------------------------------------- /hapitest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/hapitest.js -------------------------------------------------------------------------------- /migrateUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/migrateUp.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/package.json -------------------------------------------------------------------------------- /setUpDevelopment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/setUpDevelopment.sh -------------------------------------------------------------------------------- /src/clusterpost-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-app/README.md -------------------------------------------------------------------------------- /src/clusterpost-app/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-app/get.js -------------------------------------------------------------------------------- /src/clusterpost-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-app/index.js -------------------------------------------------------------------------------- /src/clusterpost-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-app/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-app/package.json -------------------------------------------------------------------------------- /src/clusterpost-app/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-app/post.js -------------------------------------------------------------------------------- /src/clusterpost-app/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-app/test.js -------------------------------------------------------------------------------- /src/clusterpost-auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-auth/index.js -------------------------------------------------------------------------------- /src/clusterpost-auth/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-auth/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-auth/package.json -------------------------------------------------------------------------------- /src/clusterpost-execution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/README.md -------------------------------------------------------------------------------- /src/clusterpost-execution/conf.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/conf.json.in -------------------------------------------------------------------------------- /src/clusterpost-execution/engine_awsecs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/engine_awsecs.js -------------------------------------------------------------------------------- /src/clusterpost-execution/engine_lsf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/engine_lsf.js -------------------------------------------------------------------------------- /src/clusterpost-execution/engine_pbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/engine_pbs.js -------------------------------------------------------------------------------- /src/clusterpost-execution/engine_slurm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/engine_slurm.js -------------------------------------------------------------------------------- /src/clusterpost-execution/engine_unix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/engine_unix.js -------------------------------------------------------------------------------- /src/clusterpost-execution/executionserver.methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/executionserver.methods.js -------------------------------------------------------------------------------- /src/clusterpost-execution/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/index.js -------------------------------------------------------------------------------- /src/clusterpost-execution/index.js.in: -------------------------------------------------------------------------------- 1 | var es = require("clusterpost-execution"); -------------------------------------------------------------------------------- /src/clusterpost-execution/jobdelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/jobdelete.js -------------------------------------------------------------------------------- /src/clusterpost-execution/jobkill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/jobkill.js -------------------------------------------------------------------------------- /src/clusterpost-execution/jobstatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/jobstatus.js -------------------------------------------------------------------------------- /src/clusterpost-execution/jobsubmit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/jobsubmit.js -------------------------------------------------------------------------------- /src/clusterpost-execution/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-execution/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/package.json -------------------------------------------------------------------------------- /src/clusterpost-execution/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/postinstall.js -------------------------------------------------------------------------------- /src/clusterpost-execution/request_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-execution/request_token.js -------------------------------------------------------------------------------- /src/clusterpost-fs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-fs/.gitignore -------------------------------------------------------------------------------- /src/clusterpost-fs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-fs/index.js -------------------------------------------------------------------------------- /src/clusterpost-fs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-fs/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-fs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-fs/package.json -------------------------------------------------------------------------------- /src/clusterpost-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-lib/README.md -------------------------------------------------------------------------------- /src/clusterpost-lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-lib/index.js -------------------------------------------------------------------------------- /src/clusterpost-lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-lib/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-lib/package.json -------------------------------------------------------------------------------- /src/clusterpost-list-react/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/.babelrc -------------------------------------------------------------------------------- /src/clusterpost-list-react/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/.editorconfig -------------------------------------------------------------------------------- /src/clusterpost-list-react/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/.eslintrc -------------------------------------------------------------------------------- /src/clusterpost-list-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/.gitignore -------------------------------------------------------------------------------- /src/clusterpost-list-react/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/.travis.yml -------------------------------------------------------------------------------- /src/clusterpost-list-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/README.md -------------------------------------------------------------------------------- /src/clusterpost-list-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-list-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/package.json -------------------------------------------------------------------------------- /src/clusterpost-list-react/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/rollup.config.js -------------------------------------------------------------------------------- /src/clusterpost-list-react/src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/src/.eslintrc -------------------------------------------------------------------------------- /src/clusterpost-list-react/src/clusterpost-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/src/clusterpost-dashboard.js -------------------------------------------------------------------------------- /src/clusterpost-list-react/src/clusterpost-jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/src/clusterpost-jobs.js -------------------------------------------------------------------------------- /src/clusterpost-list-react/src/clusterpost-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/src/clusterpost-service.js -------------------------------------------------------------------------------- /src/clusterpost-list-react/src/clusterpost-software.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/src/clusterpost-software.js -------------------------------------------------------------------------------- /src/clusterpost-list-react/src/clusterpost-tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/src/clusterpost-tokens.js -------------------------------------------------------------------------------- /src/clusterpost-list-react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/src/index.js -------------------------------------------------------------------------------- /src/clusterpost-list-react/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list-react/src/test.js -------------------------------------------------------------------------------- /src/clusterpost-list/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/Gruntfile.js -------------------------------------------------------------------------------- /src/clusterpost-list/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/LICENSE -------------------------------------------------------------------------------- /src/clusterpost-list/README.md: -------------------------------------------------------------------------------- 1 | # clusterpost-front -------------------------------------------------------------------------------- /src/clusterpost-list/dist/clusterpost-list.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/dist/clusterpost-list.min.css -------------------------------------------------------------------------------- /src/clusterpost-list/dist/clusterpost-list.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/dist/clusterpost-list.min.js -------------------------------------------------------------------------------- /src/clusterpost-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/package.json -------------------------------------------------------------------------------- /src/clusterpost-list/src/clusterpost-app.directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/src/clusterpost-app.directive.html -------------------------------------------------------------------------------- /src/clusterpost-list/src/clusterpost-app.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/src/clusterpost-app.directive.js -------------------------------------------------------------------------------- /src/clusterpost-list/src/clusterpost-es-admin.directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/src/clusterpost-es-admin.directive.html -------------------------------------------------------------------------------- /src/clusterpost-list/src/clusterpost-es-admin.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/src/clusterpost-es-admin.directive.js -------------------------------------------------------------------------------- /src/clusterpost-list/src/clusterpost-jobs.directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/src/clusterpost-jobs.directive.html -------------------------------------------------------------------------------- /src/clusterpost-list/src/clusterpost-jobs.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/src/clusterpost-jobs.directive.js -------------------------------------------------------------------------------- /src/clusterpost-list/src/clusterpost-list.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/src/clusterpost-list.directive.js -------------------------------------------------------------------------------- /src/clusterpost-list/src/clusterpost-list.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/src/clusterpost-list.module.js -------------------------------------------------------------------------------- /src/clusterpost-list/src/clusterpost-list.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-list/src/clusterpost-list.service.js -------------------------------------------------------------------------------- /src/clusterpost-model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-model/index.js -------------------------------------------------------------------------------- /src/clusterpost-model/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-model/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-model/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-model/package.json -------------------------------------------------------------------------------- /src/clusterpost-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/README.md -------------------------------------------------------------------------------- /src/clusterpost-provider/clusterprovider.methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/clusterprovider.methods.js -------------------------------------------------------------------------------- /src/clusterpost-provider/couchUpdateViews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/couchUpdateViews.js -------------------------------------------------------------------------------- /src/clusterpost-provider/cronprovider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/cronprovider.js -------------------------------------------------------------------------------- /src/clusterpost-provider/dataprovider.handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/dataprovider.handlers.js -------------------------------------------------------------------------------- /src/clusterpost-provider/dataprovider.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/dataprovider.routes.js -------------------------------------------------------------------------------- /src/clusterpost-provider/executionserver.handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/executionserver.handlers.js -------------------------------------------------------------------------------- /src/clusterpost-provider/executionserver.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/executionserver.routes.js -------------------------------------------------------------------------------- /src/clusterpost-provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/index.js -------------------------------------------------------------------------------- /src/clusterpost-provider/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-provider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/package.json -------------------------------------------------------------------------------- /src/clusterpost-provider/views/getJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/views/getJob.json -------------------------------------------------------------------------------- /src/clusterpost-provider/views/searchJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/views/searchJob.json -------------------------------------------------------------------------------- /src/clusterpost-provider/views/software.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-provider/views/software.json -------------------------------------------------------------------------------- /src/clusterpost-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-server/README.md -------------------------------------------------------------------------------- /src/clusterpost-server/checkConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-server/checkConfiguration.js -------------------------------------------------------------------------------- /src/clusterpost-server/conf.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-server/conf.default.json -------------------------------------------------------------------------------- /src/clusterpost-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-server/index.js -------------------------------------------------------------------------------- /src/clusterpost-server/migrateUp.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-server/migrateUp.js.in -------------------------------------------------------------------------------- /src/clusterpost-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-server/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-server/package.json -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/.browserlistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/.browserlistrc -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/.gitignore -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/README.md -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/package.json -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/public/favicon.ico -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/public/images/fibers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/public/images/fibers.png -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/public/images/icosahedron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/public/images/icosahedron.png -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/public/images/segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/public/images/segmentation.png -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/public/images/subcortical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/public/images/subcortical.png -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/public/index.html -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/public/manifest.json -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/src/App.js -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/src/App.test.js -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/src/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/src/bootstrap.min.css -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/src/index.css -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/src/index.js -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/src/nav-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/src/nav-bar.js -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/src/redux/navbar-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/src/redux/navbar-reducer.js -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/src/redux/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/src/redux/reducers.js -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/src/redux/store.js -------------------------------------------------------------------------------- /src/clusterpost-static/clusterpost-public/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/clusterpost-public/src/serviceWorker.js -------------------------------------------------------------------------------- /src/clusterpost-static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/index.js -------------------------------------------------------------------------------- /src/clusterpost-static/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/package-lock.json -------------------------------------------------------------------------------- /src/clusterpost-static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/clusterpost-static/package.json -------------------------------------------------------------------------------- /src/couch-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-provider/README.md -------------------------------------------------------------------------------- /src/couch-provider/couch.provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-provider/couch.provider.js -------------------------------------------------------------------------------- /src/couch-provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-provider/index.js -------------------------------------------------------------------------------- /src/couch-provider/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-provider/package-lock.json -------------------------------------------------------------------------------- /src/couch-provider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-provider/package.json -------------------------------------------------------------------------------- /src/couch-provider/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-provider/test.js -------------------------------------------------------------------------------- /src/couch-update-views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/README.md -------------------------------------------------------------------------------- /src/couch-update-views/couchUpdateViews.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/couchUpdateViews.js.in -------------------------------------------------------------------------------- /src/couch-update-views/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/index.js -------------------------------------------------------------------------------- /src/couch-update-views/migrateUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/migrateUp.js -------------------------------------------------------------------------------- /src/couch-update-views/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/package-lock.json -------------------------------------------------------------------------------- /src/couch-update-views/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/package.json -------------------------------------------------------------------------------- /src/couch-update-views/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/postinstall.js -------------------------------------------------------------------------------- /src/couch-update-views/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/test.js -------------------------------------------------------------------------------- /src/couch-update-views/updateDesignDocument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/updateDesignDocument.js -------------------------------------------------------------------------------- /src/couch-update-views/views/searchUser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/views/searchUser.json -------------------------------------------------------------------------------- /src/couch-update-views/views2/searchUser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/views2/searchUser.json -------------------------------------------------------------------------------- /src/couch-update-views/views3/searchUser3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/couch-update-views/views3/searchUser3.json -------------------------------------------------------------------------------- /src/hapi-jwt-couch-lib/.gitignore: -------------------------------------------------------------------------------- 1 | conf.my.test.json 2 | -------------------------------------------------------------------------------- /src/hapi-jwt-couch-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch-lib/README.md -------------------------------------------------------------------------------- /src/hapi-jwt-couch-lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch-lib/index.js -------------------------------------------------------------------------------- /src/hapi-jwt-couch-lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch-lib/package-lock.json -------------------------------------------------------------------------------- /src/hapi-jwt-couch-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch-lib/package.json -------------------------------------------------------------------------------- /src/hapi-jwt-couch-lib/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch-lib/test.js -------------------------------------------------------------------------------- /src/hapi-jwt-couch-lib/testserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch-lib/testserver.js -------------------------------------------------------------------------------- /src/hapi-jwt-couch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch/README.md -------------------------------------------------------------------------------- /src/hapi-jwt-couch/couchUpdateViews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch/couchUpdateViews.js -------------------------------------------------------------------------------- /src/hapi-jwt-couch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch/index.js -------------------------------------------------------------------------------- /src/hapi-jwt-couch/jwtauth.handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch/jwtauth.handlers.js -------------------------------------------------------------------------------- /src/hapi-jwt-couch/jwtauth.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch/jwtauth.routes.js -------------------------------------------------------------------------------- /src/hapi-jwt-couch/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch/package-lock.json -------------------------------------------------------------------------------- /src/hapi-jwt-couch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch/package.json -------------------------------------------------------------------------------- /src/hapi-jwt-couch/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch/test/server.js -------------------------------------------------------------------------------- /src/hapi-jwt-couch/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch/test/test.js -------------------------------------------------------------------------------- /src/hapi-jwt-couch/views/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/hapi-jwt-couch/views/user.json -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/.babelrc -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/.editorconfig -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/.eslintrc -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/.gitignore -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/.travis.yml -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/README.md -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/package-lock.json -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/package.json -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/rollup.config.js -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/src/.eslintrc -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/src/index.js -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/src/jwt-auth-interceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/src/jwt-auth-interceptor.js -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/src/jwt-auth-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/src/jwt-auth-profile.js -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/src/jwt-auth-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/src/jwt-auth-reducer.js -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/src/jwt-auth-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/src/jwt-auth-service.js -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/src/jwt-auth-users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/src/jwt-auth-users.js -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/src/jwt-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/src/jwt-auth.js -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/src/styles.css -------------------------------------------------------------------------------- /src/react-hapi-jwt-auth/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/src/react-hapi-jwt-auth/src/test.js -------------------------------------------------------------------------------- /test/conf.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/conf.test.json -------------------------------------------------------------------------------- /test/createNewJob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/createNewJob.js -------------------------------------------------------------------------------- /test/createNewJobOuputDir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/createNewJobOuputDir.js -------------------------------------------------------------------------------- /test/createNewJobRemoteData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/createNewJobRemoteData.js -------------------------------------------------------------------------------- /test/data/gravitational-waves-simulation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/data/gravitational-waves-simulation.jpg -------------------------------------------------------------------------------- /test/downloadTokenTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/downloadTokenTest.js -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/package.json -------------------------------------------------------------------------------- /test/sharedJobTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/sharedJobTest.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/test.js -------------------------------------------------------------------------------- /test/tokensTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/tokensTest.js -------------------------------------------------------------------------------- /test/userAuthTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/userAuthTest.js -------------------------------------------------------------------------------- /test/userResetTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanprietob/clusterpost/HEAD/test/userResetTest.js --------------------------------------------------------------------------------