-
Notifications
You must be signed in to change notification settings - Fork 40
Initial implementation of Course registration service #168
Comments
Moving this issue to Backlog. Will move it to respective milestone after confirmation from @mahedee |
@ratanparai , what would be the service name? "CourseRegistration" is OK? |
Yes, that will be perfect 👍 |
Whenever I am going to run migration command, I get following error. Could you please tell me what is the problem? PS D:\Project\Github\eSchool\src\Services\CourseRegistration\CourseRegistration.Infrastructure> dotnet ef migrations add initmig --startup-project ../CourseRegistration.API Could not execute because the specified command or file was not found.
|
@mahedee You need to install the dotnet tool install --global dotnet-ef For more info please check https://docs.microsoft.com/en-us/ef/core/cli/dotnet |
Thanks. Already solved. |
@mahedee: Okay I will check the service. You need to send request to the course registration service to show it in the |
How to send request? On which code block? |
@mahedee: You need to add "OpenTelemetry": {
"Enabled": true,
"Istio": false,
"Jaeger": {
"Enabled": true,
"ServiceName": "enrolling.api",
"Host": "jaeger",
"Port": 6831
}
} You need to change the "OpenTelemetry": {
"Enabled": true,
"Istio": false,
"Jaeger": {
"Enabled": true,
"ServiceName": "courseregistration.api",
"Host": "jaeger",
"Port": 6831
}
} Also, to send request to your service, open your application's |
Thank you @ratanparai . It's working now. |
CourseRegistration doesn't show in Banana Cake Pop. I mean graphql. I was trying using this url http://localhost:5101/graphql/ |
@mahedee: You mean the I can see the |
Initial implementation of course registration service with one command and query
Command:
SubmitCourseRequestCommand
Query:
GetAllCourseRequestQuery
Currently, we do not need any authorization checks.
The text was updated successfully, but these errors were encountered: