├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── diagram.svg ├── docker-compose.yml ├── nest-cli.json ├── package.json ├── renovate.json ├── src ├── app.constants.ts ├── app.controller.ts ├── app.flow.bpmn ├── app.module.ts ├── app.provider.ts ├── app.repository.ts ├── app.service.ts ├── app.workflow.ts ├── dto │ ├── data.dto.ts │ ├── index.ts │ └── value.dto.ts ├── enums │ ├── index.ts │ └── status.enum.ts ├── main.ts ├── pipes │ ├── activity.pipe.ts │ └── index.ts └── schemas │ ├── app.schema.ts │ ├── data.schema.ts │ ├── index.ts │ ├── state.schema.ts │ ├── token.schema.ts │ └── value.schema.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/README.md -------------------------------------------------------------------------------- /diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/diagram.svg -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/renovate.json -------------------------------------------------------------------------------- /src/app.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/app.constants.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.flow.bpmn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/app.flow.bpmn -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/app.provider.ts -------------------------------------------------------------------------------- /src/app.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/app.repository.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/app.workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/app.workflow.ts -------------------------------------------------------------------------------- /src/dto/data.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/dto/data.dto.ts -------------------------------------------------------------------------------- /src/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/dto/index.ts -------------------------------------------------------------------------------- /src/dto/value.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/dto/value.dto.ts -------------------------------------------------------------------------------- /src/enums/index.ts: -------------------------------------------------------------------------------- 1 | export * from './status.enum'; 2 | -------------------------------------------------------------------------------- /src/enums/status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/enums/status.enum.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/pipes/activity.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/pipes/activity.pipe.ts -------------------------------------------------------------------------------- /src/pipes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './activity.pipe'; 2 | -------------------------------------------------------------------------------- /src/schemas/app.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/schemas/app.schema.ts -------------------------------------------------------------------------------- /src/schemas/data.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/schemas/data.schema.ts -------------------------------------------------------------------------------- /src/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/schemas/index.ts -------------------------------------------------------------------------------- /src/schemas/state.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/schemas/state.schema.ts -------------------------------------------------------------------------------- /src/schemas/token.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/schemas/token.schema.ts -------------------------------------------------------------------------------- /src/schemas/value.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/src/schemas/value.schema.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vhidvz/workflow-template/HEAD/tsconfig.json --------------------------------------------------------------------------------