├── .eslintrc.js ├── .github └── workflows │ ├── nodejs-unittest.yml │ ├── publish-package.yml │ └── publish-staging-package.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── git-precommit-checks.json ├── nest-cli.json ├── package.json ├── public └── .keep ├── src ├── account.guard.spec.ts ├── account.guard.ts ├── agent.ts ├── api.guard.spec.ts ├── api.guard.ts ├── app.controller.ts ├── app.module.ts ├── app │ ├── app.service.spec.ts │ └── app.service.ts ├── authenticated-request.interface.ts ├── bootstrap.ts ├── config.ts ├── configure-middlewares.ts ├── database │ ├── database.module.ts │ ├── database.service.spec.ts │ ├── database.service.ts │ └── logger.service.ts ├── docker │ ├── docker.controller.spec.ts │ ├── docker.controller.ts │ ├── docker.module.ts │ ├── docker.namespace.ts │ ├── docker.service.spec.ts │ └── docker.service.ts ├── env.enum.ts ├── financial │ ├── financial.controller.spec.ts │ ├── financial.controller.ts │ ├── financial.module.ts │ ├── financial.service.spec.ts │ ├── financial.service.ts │ └── user-limit.dto.ts ├── http.exception.filter.ts ├── logging.interceptor.ts ├── machine │ ├── machine-app.dto.ts │ ├── machine.controller.spec.ts │ ├── machine.controller.ts │ ├── machine.module.ts │ ├── machine.service.spec.ts │ └── machine.service.ts ├── main.ts ├── panel.ts ├── shell │ ├── shell.service.spec.ts │ └── shell.service.ts ├── store │ ├── app-template.dto.ts │ ├── store.controller.spec.ts │ ├── store.controller.ts │ ├── store.module.ts │ ├── store.service.spec.ts │ ├── store.service.ts │ └── templates │ │ ├── index.ts │ │ ├── mongo.ts │ │ ├── mysql.ts │ │ ├── postgres.ts │ │ └── redis.ts ├── sysinfo │ ├── sysinfo.controller.spec.ts │ ├── sysinfo.controller.ts │ ├── sysinfo.module.ts │ ├── sysinfo.service.spec.ts │ └── sysinfo.service.ts └── ws │ ├── ws-socket.ts │ ├── ws.gateway.spec.ts │ ├── ws.gateway.ts │ └── ws.module.ts ├── swagger └── swagger.css ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/nodejs-unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/.github/workflows/nodejs-unittest.yml -------------------------------------------------------------------------------- /.github/workflows/publish-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/.github/workflows/publish-package.yml -------------------------------------------------------------------------------- /.github/workflows/publish-staging-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/.github/workflows/publish-staging-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/README.md -------------------------------------------------------------------------------- /git-precommit-checks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/git-precommit-checks.json -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/package.json -------------------------------------------------------------------------------- /public/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/account.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/account.guard.spec.ts -------------------------------------------------------------------------------- /src/account.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/account.guard.ts -------------------------------------------------------------------------------- /src/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/agent.ts -------------------------------------------------------------------------------- /src/api.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/api.guard.spec.ts -------------------------------------------------------------------------------- /src/api.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/api.guard.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app/app.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/app/app.service.spec.ts -------------------------------------------------------------------------------- /src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/app/app.service.ts -------------------------------------------------------------------------------- /src/authenticated-request.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/authenticated-request.interface.ts -------------------------------------------------------------------------------- /src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/bootstrap.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/configure-middlewares.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/configure-middlewares.ts -------------------------------------------------------------------------------- /src/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/database/database.module.ts -------------------------------------------------------------------------------- /src/database/database.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/database/database.service.spec.ts -------------------------------------------------------------------------------- /src/database/database.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/database/database.service.ts -------------------------------------------------------------------------------- /src/database/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/database/logger.service.ts -------------------------------------------------------------------------------- /src/docker/docker.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/docker/docker.controller.spec.ts -------------------------------------------------------------------------------- /src/docker/docker.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/docker/docker.controller.ts -------------------------------------------------------------------------------- /src/docker/docker.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/docker/docker.module.ts -------------------------------------------------------------------------------- /src/docker/docker.namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/docker/docker.namespace.ts -------------------------------------------------------------------------------- /src/docker/docker.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/docker/docker.service.spec.ts -------------------------------------------------------------------------------- /src/docker/docker.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/docker/docker.service.ts -------------------------------------------------------------------------------- /src/env.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/env.enum.ts -------------------------------------------------------------------------------- /src/financial/financial.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/financial/financial.controller.spec.ts -------------------------------------------------------------------------------- /src/financial/financial.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/financial/financial.controller.ts -------------------------------------------------------------------------------- /src/financial/financial.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/financial/financial.module.ts -------------------------------------------------------------------------------- /src/financial/financial.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/financial/financial.service.spec.ts -------------------------------------------------------------------------------- /src/financial/financial.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/financial/financial.service.ts -------------------------------------------------------------------------------- /src/financial/user-limit.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/financial/user-limit.dto.ts -------------------------------------------------------------------------------- /src/http.exception.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/http.exception.filter.ts -------------------------------------------------------------------------------- /src/logging.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/logging.interceptor.ts -------------------------------------------------------------------------------- /src/machine/machine-app.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/machine/machine-app.dto.ts -------------------------------------------------------------------------------- /src/machine/machine.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/machine/machine.controller.spec.ts -------------------------------------------------------------------------------- /src/machine/machine.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/machine/machine.controller.ts -------------------------------------------------------------------------------- /src/machine/machine.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/machine/machine.module.ts -------------------------------------------------------------------------------- /src/machine/machine.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/machine/machine.service.spec.ts -------------------------------------------------------------------------------- /src/machine/machine.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/machine/machine.service.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/panel.ts -------------------------------------------------------------------------------- /src/shell/shell.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/shell/shell.service.spec.ts -------------------------------------------------------------------------------- /src/shell/shell.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/shell/shell.service.ts -------------------------------------------------------------------------------- /src/store/app-template.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/app-template.dto.ts -------------------------------------------------------------------------------- /src/store/store.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/store.controller.spec.ts -------------------------------------------------------------------------------- /src/store/store.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/store.controller.ts -------------------------------------------------------------------------------- /src/store/store.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/store.module.ts -------------------------------------------------------------------------------- /src/store/store.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/store.service.spec.ts -------------------------------------------------------------------------------- /src/store/store.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/store.service.ts -------------------------------------------------------------------------------- /src/store/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/templates/index.ts -------------------------------------------------------------------------------- /src/store/templates/mongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/templates/mongo.ts -------------------------------------------------------------------------------- /src/store/templates/mysql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/templates/mysql.ts -------------------------------------------------------------------------------- /src/store/templates/postgres.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/templates/postgres.ts -------------------------------------------------------------------------------- /src/store/templates/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/store/templates/redis.ts -------------------------------------------------------------------------------- /src/sysinfo/sysinfo.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/sysinfo/sysinfo.controller.spec.ts -------------------------------------------------------------------------------- /src/sysinfo/sysinfo.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/sysinfo/sysinfo.controller.ts -------------------------------------------------------------------------------- /src/sysinfo/sysinfo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/sysinfo/sysinfo.module.ts -------------------------------------------------------------------------------- /src/sysinfo/sysinfo.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/sysinfo/sysinfo.service.spec.ts -------------------------------------------------------------------------------- /src/sysinfo/sysinfo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/sysinfo/sysinfo.service.ts -------------------------------------------------------------------------------- /src/ws/ws-socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/ws/ws-socket.ts -------------------------------------------------------------------------------- /src/ws/ws.gateway.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/ws/ws.gateway.spec.ts -------------------------------------------------------------------------------- /src/ws/ws.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/ws/ws.gateway.ts -------------------------------------------------------------------------------- /src/ws/ws.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/src/ws/ws.module.ts -------------------------------------------------------------------------------- /swagger/swagger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/swagger/swagger.css -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellops/shellops-api/HEAD/tsconfig.json --------------------------------------------------------------------------------