Files
backstage/contrib/.devcontainer/postCreate.sh
T
Jonathan Nagayoshi eadac84cf9 fix(devcontainer): fixes python new requirements for venvs
Signed-off-by: Jonathan Nagayoshi <jonathan@nagayoshi.com.br>
2023-08-24 00:52:38 +00:00

6 lines
164 B
Bash
Executable File

#!/bin/bash
yarn install
export VIRTUAL_ENV=$HOME/venv
python3 -m venv $VIRTUAL_ENV
export PATH="$VIRTUAL_ENV/bin:$PATH"
python3 -m pip install mkdocs-techdocs-core