Hosting and deployment
The Weavy backend can be deployed to many different hosting environments. In general, it involves publishing the app to a folder on a hosting server. This can be accomplished by running the dotnet publish
command as described below:
dotnet publish -c Release
This compiles the app code and copies dependencies, configuration files, static assets, etc. into a publish folder. This folder can then be copied to your hosting server.
Next steps
Common scenarios include deploying to Microsoft Azure or an on-prem web server, but many other options are available. For more information, see the following resources: