Oluşturduğum Abp projesinde Identity katmanını solution'umdan ayırıp kendi başına bir projeymiş gibi kullanmak istiyorum. Bunu yapabilmek için herhangi bir yöntem var mı? Nasıl bir yol izlemeliyim.
3 Answer(s)
-
0
Hi Metin,
For global communication, could you write it in English, please? In this way, the support team may help you easily as well.
Regards.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
You can create a hosting application (that has a Program.cs) module and add the Identity Module layers following the module architecture. If you want to host the API of the identity module as well, you can add the HttpApi layer of the Identity module. If you want to host the UI of the identity module as well, you can add the Web layer of the Identity module.
There are different architectures based on your needs if you understand the module architecture.
You can check the source code of eShopOnAbp Identity microservice that hosts Identity Module.
Keep in mind, complications and complexities increase when you move from monolith to distributed systems.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)