我创建了一个简单的单页响应式设计演示网站,我希望在所有主要设备上进行测试。我想在我的本地计算机上更改我的网站设计,然后将其部署到Heroku,这样我就可以在多个设备的公共网站上测试我的网站。
答案 0 :(得分:4)
touch index.php
创建index.php(提示Heroku将index.html部署为php应用程序)git init
git add index.php
git add index.html
git commit -m "Your comments..."
heroku create
git push heroku master
要测试对本地网站的新更改,请重复步骤6,7,9和10.
优点:1)通过Heroku在公共网站上部署您的网站只需不到一分钟; 2)它是免费的。