我有一个我构建的Django 1.11 / Python 3.5应用程序,并希望在本地运行Heroku。它是使用GitHub(https://github.com/heroku/heroku-django-template)上提供的Heroku Django模板的简单SPA。我遵循了Heroku教程(https://devcenter.heroku.com/articles/deploying-python#how-to-keep-build-artifacts-out-of-git),但我似乎无法使用以下命令在本地运行应用程序:
heroku local web
运行此命令会产生以下错误:
return binding.open(pathModule._makeLong(path), stringToFlags(flags), mode);
^
Error: EACCES: permission denied, open '.env'
at Object.fs.openSync (fs.js:584:18)
at Object.fs.readFileSync (fs.js:491:33)
at loadEnvsFile (/snap/heroku/414/lib/node_modules/heroku-cli/node_modules/foreman/lib/envs.js:133:15)
at Array.map (native)
at loadEnvs (/snap/heroku/414/lib/node_modules/heroku-cli/node_modules/foreman/lib/envs.js:148:30)
at Command.<anonymous> (/snap/heroku/414/lib/node_modules/heroku-cli/node_modules/foreman/nf.js:72:16)
at Command.listener (/snap/heroku/414/lib/node_modules/heroku-cli/node_modules/commander/index.js:301:8)
at emitTwo (events.js:106:13)
at Command.emit (events.js:194:7)
at Command.parseArgs (/snap/heroku/414/lib/node_modules/heroku-cli/node_modules/commander/index.js:615:12)
我的.env文件如下所示:
WEB_CONCURRENCY=3
SECRET_APP_KEY="xxxxxxxxxxxxxxxxxxxx"
我在.env上运行chmod 777但是我得到了同样的错误。
当我运行以下命令时:
heroku local
我收到以下错误:
[WARN] EACCES: permission denied, open 'Procfile'
[FAIL] No Procfile and no package.json file found in Current Directory - See run.js --help
▸ Cannot convert undefined or null to object
我的Procfile如下所示:
web: gunicorn personal_website.wsgi
现在我无法理解为什么在运行&#34; heroku本地网络&#34;我得到了前面提到的错误,特别是在给它必要的权限之后。
此外,其他人在运行&#34; heroku local&#34;时遇到了同样的错误,但答案是&#34;确保Procfile的格式正确。&#34;我的是正确的,并尝试了很多变化。
我在SO上见过其他人,有些已经解决了,不幸的是,对我来说,没有人能够解决这个问题。
我可能在这里做错了什么?