Hello,
I am trying to give answer per question as below -
please check https://community.abp.io/posts/using-cosmosdb-with-the-abp-framework-via-mongodb-api-x47bjeik
You can use below command in addition while creating project
--no-ui
: Specifies to not include the UI. This makes possible to create service-only modules (a.k.a. microservices - without UI).
To write Dtos, Entities and interfaces you can refer tutorials given in documentation https://docs.abp.io/en/commercial/latest/tutorials/book-store/part-1?UI=NG&DB=Mongo from this link follow the backend code development and ignore Ui side development as you want to use no Ui template
For testing part refer https://docs.abp.io/en/commercial/latest/tutorials/book-store/part-4?UI=NG&DB=Mongo
For deployment you can refer https://docs.abp.io/en/abp/latest/Deployment/Distributed-Microservice
I hope your all questions have answered.
Thanks
Hello,
Please check this for mongodb https://docs.abp.io/en/commercial/latest/guides/microservice-mongodb
thanks
Hello,
please check this documentation https://docs.abp.io/en/commercial/latest/startup-templates/microservice/create-new-microservice
thanks,
Hello ,
I am unable reproudce the issue. i have check at my end it is work fine. Can you give steps to reporduce the issue.
Thank you.
Hello,
Could you please check once in your Database whether the role user
exists in Abp.Users
class?
Thanks
Hello,
Please share steps to reporduce the issue.
Thank you.
Hello,
I am checking your case, at my end for both 8.0.3 and 8.0.4 application is running fine. I just want confirmation on - When you are running 8.0.3 application that time your CLI and ABP suite both should be of version 8.0.3 and while running 8.0.4 application your CLI and ABP suite both should be of version 8.0.4. or Please check in incognito mode once and try to clean browser cache.
thanks
Hello ,
Please add below code in app.component.ts
file.
import {ToolbarService} from '@volosoft/ngx-lepton-x/layouts';
export class AppComponent {
constructor( private toolbarservice: ToolbarService)
{
this.toolbarservice.setItems([
{
id: 'id1',
icon: 'action-icon fas fa-comments'
},
{
id: 'id2',
icon: 'action-icon bi bi-bell-fill'
}
]);
}
}
it will result like
In this way you can add any icon as per your requirement.
Thank you.