Reputation: 20244
We have made us a single-tenant AAD authenticated app for internal use with our O365. We deploy it directly from VisualStudio to Azure App Services.
A bunch of customers have seen that app and want to also use this app for their projects, so the boss decided we could possibly sell it to them (binary, no code) and create a new business opportunity that way.
It is single tenant and we don't want to go hosted, because otherwise we could access other companies' office documents, which means very much paperwork and even liability here in Germany.
Is there a possibility to easily "copy" the app into their Azure, or provide it via marketplace or some similar option? Given that we are adding features every month, an option that would allow easy update cycles would be prefered.
Upvotes: 1
Views: 707
Reputation: 39956
Private Deployment
d:\project-name\deployment\web
d:\project-name\deployment\web
without any .gitignore fileFor each client in your clients
You will have to combine powershell and some of git commands to make it work completely automatically.
Public Deployment
d:\project-name\deployment\web
d:\project-name\deployment\web
code to some public Git host like BitBucket and Github without any .gitignore file. Upvotes: 2