heroku线上部署node小程序

环境安装


首先我们需要个heroku账户,可以点这里申请,然后我们需要在本地下载安装它的工具包(我这里只讲Ubuntu,其他请转https://devcenter.heroku.com/...

wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh

如果上面代码安装失败(可能只是我的电脑问题),并报认证之类的错误,那就把https://toolbelt.heroku.com/install-ubuntu.sh的代码复制到本地保存为install.sh,将第13行的http改为https,如下所示:

#!/bin/sh
{
    echo "This script requires superuser access to install apt packages."
    echo "You will be prompted for your password by sudo."

    # clear any previous sudo permission
    sudo -k

    # run inside sudo
    sudo sh <
                    
                    

你可能感兴趣的:(heroku,node.js,git)