Files
I-Form_Server_Node_Deployer/netlify.toml
2023-11-10 13:14:07 +00:00

12 lines
264 B
TOML

[build]
publish = "site"
command = """
add-apt-repository ppa:deadsnakes/ppa &&
apt update &&
apt install python3.12 -y &&
pip3 install -q poetry &&
poetry config virtualenvs.in-project true &&
poetry env use python3.12 &&
poetry install -v &&
poetry run build
"""