├── .gitignore ├── README.md ├── images ├── chapter1 │ ├── Untitled 1.png │ ├── Untitled 2.png │ ├── Untitled 3.png │ ├── Untitled 4.png │ ├── Untitled 5.png │ ├── Untitled 6.png │ ├── Untitled 7.png │ └── Untitled.png ├── chapter10 │ ├── Untitled 1.png │ ├── Untitled 2.png │ ├── Untitled 3.png │ ├── Untitled 4.png │ ├── Untitled 5.png │ ├── Untitled 6.png │ ├── Untitled 7.png │ └── Untitled.png ├── chapter11 │ ├── Untitled 1.png │ ├── Untitled 2.png │ ├── Untitled 3.png │ └── Untitled.png ├── chapter2 │ ├── pic2-1.png │ ├── pic2-2.png │ ├── pic2-3.png │ └── pic2-4.png ├── chapter4 │ ├── Untitled 1.png │ ├── Untitled 2.png │ ├── Untitled 3.png │ └── Untitled.png ├── chapter5 │ ├── Untitled (1).png │ ├── Untitled (2).png │ └── Untitled.png ├── chapter6 │ ├── 바운디드컨텍스트.png │ ├── 애그리거트.png │ ├── 의존성나누기.png │ ├── 의존성역전.png │ ├── 포트나누기.png │ └── 포트와인터페이스나누기.png ├── chapter7 │ ├── Untitled 1.png │ ├── Untitled 2.png │ ├── Untitled 3.png │ ├── Untitled 4.png │ ├── Untitled 5.png │ ├── Untitled 6.png │ ├── Untitled 7.png │ └── Untitled.png └── chapter8 │ ├── Untitled 1.png │ ├── Untitled 2.png │ ├── Untitled 3.png │ └── Untitled.png └── summary ├── Chapter1.md ├── Chapter10.md ├── Chapter11.md ├── Chapter2.md ├── Chapter3.md ├── Chapter4.md ├── Chapter5.md ├── Chapter6.md ├── Chapter7.md └── Chapter8.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/README.md -------------------------------------------------------------------------------- /images/chapter1/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter1/Untitled 1.png -------------------------------------------------------------------------------- /images/chapter1/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter1/Untitled 2.png -------------------------------------------------------------------------------- /images/chapter1/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter1/Untitled 3.png -------------------------------------------------------------------------------- /images/chapter1/Untitled 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter1/Untitled 4.png -------------------------------------------------------------------------------- /images/chapter1/Untitled 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter1/Untitled 5.png -------------------------------------------------------------------------------- /images/chapter1/Untitled 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter1/Untitled 6.png -------------------------------------------------------------------------------- /images/chapter1/Untitled 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter1/Untitled 7.png -------------------------------------------------------------------------------- /images/chapter1/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter1/Untitled.png -------------------------------------------------------------------------------- /images/chapter10/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter10/Untitled 1.png -------------------------------------------------------------------------------- /images/chapter10/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter10/Untitled 2.png -------------------------------------------------------------------------------- /images/chapter10/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter10/Untitled 3.png -------------------------------------------------------------------------------- /images/chapter10/Untitled 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter10/Untitled 4.png -------------------------------------------------------------------------------- /images/chapter10/Untitled 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter10/Untitled 5.png -------------------------------------------------------------------------------- /images/chapter10/Untitled 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter10/Untitled 6.png -------------------------------------------------------------------------------- /images/chapter10/Untitled 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter10/Untitled 7.png -------------------------------------------------------------------------------- /images/chapter10/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter10/Untitled.png -------------------------------------------------------------------------------- /images/chapter11/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter11/Untitled 1.png -------------------------------------------------------------------------------- /images/chapter11/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter11/Untitled 2.png -------------------------------------------------------------------------------- /images/chapter11/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter11/Untitled 3.png -------------------------------------------------------------------------------- /images/chapter11/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter11/Untitled.png -------------------------------------------------------------------------------- /images/chapter2/pic2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter2/pic2-1.png -------------------------------------------------------------------------------- /images/chapter2/pic2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter2/pic2-2.png -------------------------------------------------------------------------------- /images/chapter2/pic2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter2/pic2-3.png -------------------------------------------------------------------------------- /images/chapter2/pic2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter2/pic2-4.png -------------------------------------------------------------------------------- /images/chapter4/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter4/Untitled 1.png -------------------------------------------------------------------------------- /images/chapter4/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter4/Untitled 2.png -------------------------------------------------------------------------------- /images/chapter4/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter4/Untitled 3.png -------------------------------------------------------------------------------- /images/chapter4/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter4/Untitled.png -------------------------------------------------------------------------------- /images/chapter5/Untitled (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter5/Untitled (1).png -------------------------------------------------------------------------------- /images/chapter5/Untitled (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter5/Untitled (2).png -------------------------------------------------------------------------------- /images/chapter5/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter5/Untitled.png -------------------------------------------------------------------------------- /images/chapter6/바운디드컨텍스트.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter6/바운디드컨텍스트.png -------------------------------------------------------------------------------- /images/chapter6/애그리거트.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter6/애그리거트.png -------------------------------------------------------------------------------- /images/chapter6/의존성나누기.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter6/의존성나누기.png -------------------------------------------------------------------------------- /images/chapter6/의존성역전.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter6/의존성역전.png -------------------------------------------------------------------------------- /images/chapter6/포트나누기.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter6/포트나누기.png -------------------------------------------------------------------------------- /images/chapter6/포트와인터페이스나누기.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter6/포트와인터페이스나누기.png -------------------------------------------------------------------------------- /images/chapter7/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter7/Untitled 1.png -------------------------------------------------------------------------------- /images/chapter7/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter7/Untitled 2.png -------------------------------------------------------------------------------- /images/chapter7/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter7/Untitled 3.png -------------------------------------------------------------------------------- /images/chapter7/Untitled 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter7/Untitled 4.png -------------------------------------------------------------------------------- /images/chapter7/Untitled 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter7/Untitled 5.png -------------------------------------------------------------------------------- /images/chapter7/Untitled 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter7/Untitled 6.png -------------------------------------------------------------------------------- /images/chapter7/Untitled 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter7/Untitled 7.png -------------------------------------------------------------------------------- /images/chapter7/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter7/Untitled.png -------------------------------------------------------------------------------- /images/chapter8/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter8/Untitled 1.png -------------------------------------------------------------------------------- /images/chapter8/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter8/Untitled 2.png -------------------------------------------------------------------------------- /images/chapter8/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter8/Untitled 3.png -------------------------------------------------------------------------------- /images/chapter8/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/images/chapter8/Untitled.png -------------------------------------------------------------------------------- /summary/Chapter1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/summary/Chapter1.md -------------------------------------------------------------------------------- /summary/Chapter10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/summary/Chapter10.md -------------------------------------------------------------------------------- /summary/Chapter11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/summary/Chapter11.md -------------------------------------------------------------------------------- /summary/Chapter2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/summary/Chapter2.md -------------------------------------------------------------------------------- /summary/Chapter3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/summary/Chapter3.md -------------------------------------------------------------------------------- /summary/Chapter4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/summary/Chapter4.md -------------------------------------------------------------------------------- /summary/Chapter5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/summary/Chapter5.md -------------------------------------------------------------------------------- /summary/Chapter6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/summary/Chapter6.md -------------------------------------------------------------------------------- /summary/Chapter7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/summary/Chapter7.md -------------------------------------------------------------------------------- /summary/Chapter8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woowahan-hexagonal-architecture-study/get-your-hands-dirty-on-clean-architecture/HEAD/summary/Chapter8.md --------------------------------------------------------------------------------