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
from datetime import datetime import pytz from src.app.core.config import settings timezone = pytz.timezone(settings.timezone) def utc_now(): now = datetime.now(timezone) return now
put timezone config in .env and config.toml: TIMEZONE=Asia/Shanghai
The text was updated successfully, but these errors were encountered:
from datetime import datetime import pytz from src.app.core.config import settings timezone = pytz.timezone(settings.timezone) def utc_now(): now = datetime.now(timezone) return now
put timezone config in .env and config.toml:
TIMEZONE=Asia/Shanghai
The text was updated successfully, but these errors were encountered: