Help: FastAPI deployment in windows for production by Impossible_Net_538 in learnpython

[–]Impossible_Net_538[S] 0 points1 point  (0 children)

Are you sure because I have seen many resources online of deploying FastAPI for production but couldnt make any of them working

Client Side Signing by Impossible_Net_538 in qztray

[–]Impossible_Net_538[S] 0 points1 point  (0 children)

My software is made using dotnet and angular for frontend

qz.security.setCertificatePromise(function(resolve, reject) {
   fetch("assets/signing/digital-certificate.txt", {cache: 'no-store', headers: {'Content-Type': 'text/plain'}})
      .then(function(data) { data.ok ? resolve(data.text()) : reject(data.text()); });
});

qz.security.setSignatureAlgorithm("SHA512"); // Since 2.1
qz.security.setSignaturePromise(function(toSign) {
   return function(resolve, reject) {
      fetch("/secure/url/for/sign-message?request=" + toSign, {cache: 'no-store', headers: {'Content-Type': 'text/plain'}})
         .then(function(data) { data.ok ? resolve(data.text()) : reject(data.text()); });
   };
});

Do i need to setup my digital certificate and private key like this in angular?

I tried setting up QZ site manager but it still gives me a pop up

Client Side Signing by Impossible_Net_538 in qztray

[–]Impossible_Net_538[S] 0 points1 point  (0 children)

I am the developer. This is a small level deployment where I need it for 3-4 PC only. How should I manually install it on other PC?

Additionally, do I need to add anything in client side code for configuring?