Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyEye-FAST committed Jan 28, 2024
1 parent b14aca0 commit cf65d28
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

注:**⚠️此项目仍在开发中,网页样式仍需完善,欢迎提交Issue和Pull Request。**

可查询Minecraft中文标准译名的简易网页,后端框架使用Flask
可查询Minecraft中文标准译名的简易网页,后端框架使用[Flask](https://github.com/pallets/flask)

目前网页的演示可在以下网址查看:

Expand All @@ -22,7 +22,7 @@
pip install -r requirements.txt
```

## 前期准备
## 说明

### 语言文件

Expand All @@ -38,14 +38,24 @@ pip install -r requirements.txt

本项目使用思源宋体和[一点明体](https://github.com/ichitenfont/I.Ming)的自动构建子集。

本仓库会在每周四🕐01:00(UTC+8,即UTC每周三🕔17:00)自动检查一点明体的子集是否需要根据文言更新
本仓库会在每周四🕐01:00(UTC+8,即UTC每周三🕔17:00)自动检查一点明体的子集文件是否需要根据文言的内容而更新

使用脚本为[`extract_font.py`](/extract_font.py),需要安装库`fonttools`
使用脚本为[`extract_font.py`](/extract_font.py),需要库[`fonttools`](https://github.com/fonttools/fonttools)

### 时间

网页上显示的日期和时区根据用户的IP决定,相关数据从GeoIP2 GeoLite2数据库获取,本地化由[`babel`](https://github.com/python-babel/babel)[`flask-babel`](https://github.com/python-babel/flask-babel)完成。

## 运行

参见[Flask文档](https://flask.palletsprojects.com/en/3.0.x/)

需要在`.env`或者系统中设置`SECRET_KEY`环境变量,可以使用以下命令生成:

``` bash
python -c 'import secrets; print(secrets.token_hex())'
```

## 反馈

遇到的问题和功能建议等可以提出议题(Issue)。
Expand Down
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def get_timezone_from_ip():
response = reader.city(ip)
return response.location.time_zone
except geoip2.errors.AddressNotFoundError:
return request.headers.get("Time-Zone") or "UTC"
return request.headers.get("Time-Zone")


babel = Babel(
Expand Down

0 comments on commit cf65d28

Please sign in to comment.