【发布时间】:2014-11-25 13:33:30
【问题描述】:
查看更新的“Getting Started with Django on Heroku”指南,他们有以下示例 procfile:
web: gunicorn hellodjango.wsgi --log-file -
--log-file -是什么意思?
【问题讨论】:
标签: heroku
查看更新的“Getting Started with Django on Heroku”指南,他们有以下示例 procfile:
web: gunicorn hellodjango.wsgi --log-file -
--log-file -是什么意思?
【问题讨论】:
标签: heroku
意思是“记录到标准输出”。 --log-file 标志允许您设置日志文件的路径,- 表示“stdout”(在此上下文中)。
【讨论】: