Hi,
I am wondering if I can save data locally (shared excel/access file in my local network) using the client code only without using the uplink serves, so, I don’t have to deal with HIPAA certification headache!
Thank you for your help.
Hi,
I am wondering if I can save data locally (shared excel/access file in my local network) using the client code only without using the uplink serves, so, I don’t have to deal with HIPAA certification headache!
Thank you for your help.
Thank you @Tony.Nguyen !
I follow the link you posted and I think the following links ( https://anvil.works/docs/how-to/app-server
https://github.com/anvil-works/anvil-runtime) are the answer for my question, I think I have to do a lot of reading to understand how to do that, usually seeing an example/tutorial saves a lot of time, please let me know if you are aware of any tutorial related to this subject.
Thank you again!
Hi,
You can actually do this using Anvil hosted apps (I have, for that same reason). All processing occurs client-side and the “legal burden” thus falls on the user. You can make this more complex obviously (encryption and so…).
Check out this code sample and demo
External database is also another option. I haven’t tried it myself, but it should work without any issue.
It works…the problem being that you have to request data from the server side (because you can’t use the drivers directly from the client-side). Sure, one may opt no to store it but just by processing it you’d probably have to be HIPAA certified anyway…
That is beautiful! Thank you so much , this is exactly what I was looking for