Pamela Fox
Pamela Fox
Interesting, I don't understand why it's installing pytest, that shouldn't happen for app/backend requirements.txt. Did you use "azd up" from the root in order to deploy it?
Ah, well that will likely require some special setup. When you use "azd up", the tool will first package up the frontend, copy the frontend assets into app/backend, and then...
To run azd up, you need these permissions: * Your Azure account must have Microsoft.Authorization/roleAssignments/write permissions, such as [Role Based Access Control Administrator](https://learn.microsoft.com/azure/role-based-access-control/built-in-roles#role-based-access-control-administrator-preview), [User Access Administrator](https://learn.microsoft.com/azure/role-based-access-control/built-in-roles#user-access-administrator), or [Owner](https://learn.microsoft.com/azure/role-based-access-control/built-in-roles#owner). If you...
I assume you're working at a company that has restricted your account's permissions. Typically then, your company would have an IT department that could grant you those permissions, using steps...
I just ran bower register to see what'd happen, and it takes issue with the bower.json: bower lscache#* invalid-meta The "main" field cannot contain minified files bower lscache#* invalid-meta The...
Thank you for sharing, @AndrewJHart ! Some devs in the issue tracker for https://github.com/Azure-Samples/ms-identity-python-webapp/ were also looking for FastAPI samples. By the way, there's now an identity package that is...
Do you have permissions to create new resource groups? That is required for `azd up` to work. The error seems to suggest you don't, from my reading of it. If...
Note that this may affect deployability if you're relying on App Service's auto detection for app startup script, as it doesn't yet detect any async frameworks.
@ashikns Yes, you can have multiple workers/threads when running a WSGI app using gunicorn on a multi-core machine. However, if all those workers are tied up waiting for the results...
@mratanusarkar Please share your error / stack trace, as there are many things that could cause an issue. It's typically something with how your local environment is set up. The...