To host a Web App in Azure could be a much more simple and surprisingly cost effective way to make your project public. Recently I made a little AI program that evaluated a bunch of fighter data and returned a predicted winner. https://fightscouter.ai

First I Needed To Create an App Service Plan

I went with Basic B# because when I tried to get the cheapest option, the app would crash just trying to boot up. I pay about a dollar a day for B3 which is fine for me.
Here are the current metrics my app runs at which are found in the app service plan overview

Once the plan was created I was abled to zip my project using zip -r appName.zip . from the root directory of the project.
Then to push to Azure run this command : az webapp deploy –resource-group –name –src-path app.zip -plan <planName>
And if all runs smoothly your app will now be available at yourAppName.azurewebsites.net