1. Register with heroku
https://signup.heroku.com/account2. Select PHP in Heroku Dashboard
https://dashboard.heroku.com/apps
3. Prepare Local System Environment
This tutorial uses the following Local System Environment:3.1. Windows 7 Professional SP1
3.2. Uwamp version 3.1.0 (https://www.uwamp.com/file/UwAmp.exe)
3.3. Visual C++ Redistributable for Visual Studio 2012 Update 4 vcredist_x86.exe (https://www.microsoft.com/en-us/download/confirmation.aspx?id=30679) [this is required by Apache]
... otherwise Apache will not run in this WAMP package
3.4. Visual C++ Redistributable for Visual Studio 2015 - vc_redist.x86.exe (https://www.microsoft.com/en-us/download/details.aspx?id=48145) [this is required by PHP runtime]
...otherwise windows will report missing dll files
4. Install Required Tool
4.1. Composer - https://getcomposer.org/download/
Install Composer and select the PHP version that you have selected via Uwamp in step 3.2 above (Heroku requires PHP version 7+)
4.2. Heroku CLI - https://devcenter.heroku.com/toolbelt-downloads/windows32
5. Check That All Installations Were Successful
Run Commands5.1. PHP: php -v
5.2. Composer: composer -v
5.3. Git: git --version (installed by Heroku CLI in step 4.2)
5.4. Heroku: heroku (it will require you to enter your heroku account name and password)
6. Setting Up Test Project
Follow the steps in https://devcenter.heroku.com/articles/getting-started-with-php#prepare-the-appgit clone https://github.com/heroku/php-getting-started.git
cd php-getting-started
heroku create
git push heroku master
heroku ps:scale web=1
heroku open
Refer the following screenshots:
7. Check in Heroku Web Dashboard
8. Edit and Commit Changes
Edit your codes and then type the following commands:
git push origin master
No comments:
Post a Comment