├── .gitignore ├── ADR-template.md ├── ADR-template_es-ES.md ├── ADR-template_pt-BR.md ├── ADR-template_zh-CN.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml -------------------------------------------------------------------------------- /ADR-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerson/ADR-template/HEAD/ADR-template.md -------------------------------------------------------------------------------- /ADR-template_es-ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerson/ADR-template/HEAD/ADR-template_es-ES.md -------------------------------------------------------------------------------- /ADR-template_pt-BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerson/ADR-template/HEAD/ADR-template_pt-BR.md -------------------------------------------------------------------------------- /ADR-template_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerson/ADR-template/HEAD/ADR-template_zh-CN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerson/ADR-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerson/ADR-template/HEAD/README.md --------------------------------------------------------------------------------