You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setupRelates to the InvenTree setup / installation process
1 participant
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
在.env文件里,可以通过例如INVENTREE_TIMEZONE=UTC的方式来设置时区。
而官方文档里只是写明了可以查看维基百科来选择适合自己的时区,并没有给出范例格式或者相关的注解及详细说明。
比如中国大陆,上海的时区,用的缩写是CST,但如果你将CST填入,例如这样:INVENTREE_TIMEZONE=CST,则一定会收到一个错误,服务器也不会正常运行。
百度上查到很多的相关信息只会说时区要设置为Asia/Shanghai,这时,如果你将时区设置为INVENTREE_TIMEZONE=Asia/Shanghai,那么一定还会收到同样的错误。
如果你参照网页HTTP地址格式写,加个双引号,比如这样:INVENTREE_TIMEZONE=“Asia/Shanghai”,同样的错误依旧会发生。
综上所述,你必须使用双引号修饰时区字段,例如INVENTREE_TIMEZONE='Asia/Shanghai',只有这样服务器才能正确工作。
附言:我从接触该项目,直到接触到时区这块,大概是发稿日期的四天前吧,就尝试过除了单引号以外的所有时区设定,没有一个是成功的;时至今日,又失败了N多次,终于找到了正确的解决办法,真的心塞。
Beta Was this translation helpful? Give feedback.
All reactions