From bd889bb09f219ad6ba9179081640971f7969abaf Mon Sep 17 00:00:00 2001 From: heqingpan Date: Tue, 30 Apr 2024 19:37:03 +0800 Subject: [PATCH] update .env.example,add RNACOS_GMT_OFFSET_HOURS field --- doc/conf/.env.example | 2 ++ src/common/constant.rs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/conf/.env.example b/doc/conf/.env.example index f4d670b7..e54be4ae 100644 --- a/doc/conf/.env.example +++ b/doc/conf/.env.example @@ -46,3 +46,5 @@ RNACOS_ENABLE_NO_AUTH_CONSOLE=false # 控制台登陆有效时长(单位为秒),默认86400秒(一天) #RNACOS_CONSOLE_LOGIN_TIMEOUT=86400 +# 日志时间的时区,单位小时;默认为本机时区,运行在docker时需要指定; 示例: 8(东8区),-5(西5区) +#RNACOS_GMT_OFFSET_HOURS=8 diff --git a/src/common/constant.rs b/src/common/constant.rs index 12b9c451..c4fa456d 100644 --- a/src/common/constant.rs +++ b/src/common/constant.rs @@ -1,6 +1,6 @@ use std::sync::Arc; -pub const APP_VERSION: &str = "0.5.6"; +pub const APP_VERSION: &str = "0.5.7-beta"; pub const EMPTY_STR: &str = "";