Files
py-blog/.cnb.yml
T
2026-07-03 16:34:00 +08:00

13 lines
375 B
YAML

$:
vscode:
- runner:
cpus: 2
stages:
- name: ls
script: ls -al
- name: install dependents
script:
- apt install python3 python3-pip python3-venv -y
- python3 -m venv ./venv
- ./venv/bin/pip install -r requirements.txt
- echo "source $(pwd)/venv/bin/activate" >> ~/.zshrc