├── .gitattributes ├── .github └── CODEOWNERS ├── .gitignore ├── contributing.md ├── license ├── package.json ├── pull_request_template.md ├── readme.md └── temporal.png /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/awesome-temporal/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/awesome-temporal/HEAD/contributing.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/awesome-temporal/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/awesome-temporal/HEAD/package.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/awesome-temporal/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/awesome-temporal/HEAD/readme.md -------------------------------------------------------------------------------- /temporal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/temporalio/awesome-temporal/HEAD/temporal.png --------------------------------------------------------------------------------