Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 760 Bytes

README.md

File metadata and controls

44 lines (29 loc) · 760 Bytes

chinese-dos-games-web

Source code of https://dos.zczc.cz

Usage

下载 Flask

$ pip3 install flask

下载游戏文件

在根目录下执行

$ git submodule update --init --recursive --remote && python3 ./static/games/download_data.py

运行 Flask

在根目录下执行

$ python3 app.py

Credits

修改記錄

templates/game.html

"{{ url_for('static', filename="games/bin/{}.zip".format(game_info["identifier"])) }}"),

修改為

"{{'/static/games/bin/{}.zip'.format(game_info["identifier"])}}"),