我想設置流星使用pm2(https://github.com/Unitech/pm2)而不是永遠作爲節點進程監視器。我沒有得到pm2進程需要看到Meteor應用程序的環境變量。PM2 +流星環境設置
這裏是我的過程:
export MONGO_URL="mongodb://localhost:27017/meteor"
export PORT=4000
export ROOT_URL="https://beta.example.com/"
pm2 start main.js --name MyMeteorApp
在從PM2我看到我的流星應用程序時報告說找不到MONGO_URL
錯誤日誌。
有沒有具體的方法,我需要做出口,以便與pm2工作?
如什麼變量名? –