Im trying to deploy an online application with a.NET 6 Web API backend app with a database and a Vue.jg frontend. The problem that I’m experiencing is when I try to use my github repository for the beckend application I get a “no component detected” error and cannot proceed with with creating the source.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
You are getting that message as .NET is not a supported cloud-native buildpack. You can find the list of the supported buildpacks here:
https://docs.digitalocean.com/products/app-platform/reference/buildpacks/
What you could do instead is to create a Dockerfile and deploy your .NET application using a Dockerfile as described here:
https://docs.digitalocean.com/products/app-platform/reference/dockerfile/
Hope that this helps!
Best,
Bobby
If you’re here because you got “no component detected” while trying to deploy a static website: make sure you have an
index.html
(and not some other filename like I did).