时间:2021-07-01 10:21:17 帮助过:7人阅读
今天在51cto上看了一篇关于技术博文,不经意间看到了heroku这个云平台,至于这个平台干什么的就啰嗦了。下面还是重点说说如何通过heroku来部署PHP应用。
hrerku官网:https://www.heroku.com/
一、基本操作
已经熟悉heroku的朋友可以略过这步了
注册完毕登陆到heroku,然后直接进入到管理后台,然后点击左侧菜单的”Personal Apps”,进入到如下图所示页面,点击右上的”+“号按钮,选择”Create new app”
进入创建app页面填写app名称和选择服务器所在地,根据app名称会生成一个 项目web地址: https://myapp-one.herokuapp.com/ ,如下图所示步骤:
app创建完成之后会看到如下所示的界面:
如图所示,app页面会有5个标签导航
二、部署PHP应用
以上基本操作了解和准备完成之后可以来说本文的重点了,如何部署PHP应用
$ heroku login
$ git init
$ heroku git:remote -a myadd-one#
或者
$ git remote add heroku https://git.heroku.com/myapp-one.git
$ git add -A$ git commit -m "init myapp-one"
$ echo "{}" > composer.json
$ git add composer.json
$ git commit -m "add composer.json"
$ heroku buildpacks:set https://github.com/heroku/heroku-buildpack-php
-在工程根目录下添加Procfile文件,用于设置项目执行的初始命令(非常重要,解释下‘php -S 0.0.0.0:
$ echo " web: php -S 0.0.0.0:$PORT -t site/api/html " > Procfile$ git add Procfile$ git commit -m "add Procfile to start program"
$ git push heroku master #部署项目,每次修改了也要执行这个命令$ heroku open # 打开项目,其实就是用浏览器访问当前web应用
以上本人亲自尝试配置成功过程,如有遗漏,还请包涵
具体参考官方文档如下:
PHP部署官方说明: https://devcenter.heroku.com/articles/getting-started-with-php#introduction
Heroku PHP 构建包地址: https://github.com/heroku/heroku-buildpack-php
heroku命令行工具使用说明: https://devcenter.heroku.com/categories/command-line
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('').text(i)); }; $numbering.fadeIn(1700); }); });以上就介绍了Heroku部署PHP应用,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。