hreoku 部署

http://www.heroku.com/  注册账号

https://devcenter.heroku.com/articles/heroku-cli  打包工具

http://www.cnblogs.com/Wayou/p/hichat_built_with_nodejs_socket.html  参考

使用命令行工具

$ heroku login  登录 输入账号密码

使用git工具
 
$ git init
 
$ git add .
 
$ git commit -m "init"


创建heroku应用

$ heroku create sample9527

数据库

$ heroku addons:add mongolab

同步代码

$ git push heroku master
同步之后,heroku会自动根据npm配置下载和安装必要的dependencies,然后启动你的应用

查看日志

$ heroku logs

提交代码

$ git commit -a -m "update some code"
$ git push heroku master

重启服务

$ heroku restart



你可能感兴趣的:(hreoku 部署)