cantera website
1.0.0
该存储库包含cantera.org网站的源代码。该站点是使用狮身人面像静态站点发生器构建的。
安装pdm
。推荐的方法是使用pipx
。
运行pdm install
以创建虚拟环境
运行pdm run build
以构建网站,或在页面更改时自动pdm run rebuild
网站。
运行Web服务器以查看网站:
python -m http.server 8080 --directory build/html
打开浏览器http:// localhost:8080
当您准备关闭内容时,使用Cc
( CTRL-c
)关闭Web服务器
使用conda
创建用于狮身人面像的虚拟环境并激活它。环境必须具有Python 3.10和conda-lock
套件。
克隆坎特拉网站来源: git clone https://github.com/Cantera/cantera-website.git
输入网站回购: cd cantera-website
在网站存储库中,安装所需的软件包:
conda-lock install continuous-integration/conda-lock.yml --name < name-of-your-environment >
构建网站并在浏览器中打开: make html && python -m http.server --directory build/html
然后导航到localhost:8000
在您的浏览器中
按Cc
( CTRL-C
)关闭Python HTTP服务器