1
0
Fork 0
anta/.devcontainer/startup.sh
Daniel Baumann 3ccac88507
Merging upstream version 1.0.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 11:54:06 +01:00

16 lines
324 B
Bash

#!/bin/sh
# echo "Configure direnv"
# echo "eval \"$(direnv hook bash)\"" >> ~/.bashrc
echo "Upgrading pip"
pip install --upgrade pip
echo "Installing ANTA package from git"
pip install -e .
echo "Installing ANTA CLI package from git"
pip install -e ".[cli]"
echo "Installing development tools"
pip install -e ".[dev]"