红联Linux门户
Linux帮助

php部署到heroku上

发布时间:2016-08-13 09:07:18来源:linux网站作者:小猪撞月球
1、先注册heroku账号
 
2、先安装heroku toolbelt 工具 https://toolbelt.heroku.com/debian
wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh
 
heroku login
输入注册的账号邮箱和密码
进入到你要上传目录
cd /yourAPP
git init 
git add .
git commit -m "first commit"
 
创建你在heroku的app
heroku create (会生成默认的目录)
heroku create --stack cedar -app yourappsname (heroku create --stack cedar 只对php有效)
git push heroku master
就ok了。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23263.html