Alex Chen

Results 5 comments of Alex Chen

Seems flutter doesn't support build application for native Apple M1 chip. Below wiki page shows that M1 can run X86_64 application through Rosetta2 at this moment. So you will see...

> Thanks so much for this big PR and it's very inspiring! Currently I'm working on a similar solution in dev branch which use tonic as a grpc server. As...

Looks like axum can use some mechanism to host both http & grpc services in same application. See: 1. https://github.com/tokio-rs/axum/blob/bb22802bfc3733ba2040de6ec0cfb8d3fd186fac/examples/rest-grpc-multiplex/src/main.rs 2. https://www.fpcomplete.com/blog/axum-hyper-tonic-tower-part4/

I am able to update source file in `server` folder to host both restapi and grpc service in `termusic-server` based on axum's example `rest-grpc-multiplex`. I will fine tune the code...