This is a PHP web app built with CodeIgniter that you can deploy to Azure App Service.
It is minimally modified from the default CodeIgniter template to work with App Service. Namely, the /vendor
folder is no longer ignored in .gitignore
, so that your composer installed packages will be
uploaded to Azure App Service.
Azure App Service can run
php composer.phar install
when you rungit push
, but it's not enabled by default. To enable it, you need to install the Composer extension for your web app. The default CodeIgniter template doesn't actually require anything other than the PHP framework itself, so it can be deployed withoutcomposer.json
at all.
See license.txt.