Hi,
To tell the truth, given some of the posts I’ve seen here I am a bit scared to share mine. But every journey starts with the first stumble. My background is a very specific are of bioinformatics and I have only vague idea what I am talking about here. However, I’ve been using rust for couple of years now (in my domain) and that is why I am here, and the fact that I decided to start a weekend project.
The project is to set up a small e-commerce site (locally hosted) for my bioinfo related digital products. The thing is these are quite “special” type of resources that are designed to be utilized only from inside a specific “app/framework”. The idea is that all these resources are preprocessed (that is segments are ) and stored on my server. You as a user can access them on demand if you pay (in imagery tokens preferably), and in order to prevent sharing the “secret souse” I have developed a decoder/runner/framework that can utilize client's request without disclosing the underlying “recipe”.
Therefore my question is, is Dioxus the right place to be given I am hoping to use it to write a simple e-commerce mobile app that should support the following:
1. user should be able to browse through a list of digital products
2. decide on its purchase and send a request to my server
3. on a server side the request should be processed by collecting elements required to build a product, encoding them specifically for the user and returning it back to a here/him once a transaction is finalized
4. user upon receiving the digital product can utilize it through its app whenever he/she wants
Any links , pointers to get me started, tutorials, example projects done in Dioxus are welcomed. I saw https://github.com/DioxusLabs/example-projects/tree/master/ecommerce-site as an example for the mobile app, are there any for the above use case suitable example for the back-end and how to connect it to the mobile app?
Thank you in advance !
Mxs