git clone git@github.com:waketzheng/fast-dev-cli.git
cd fast-dev-cl
- Create virtual environment and install dependencies by pdm
# Create virtual environment
pdm use 3
# Activate virtual environment
source .venv/*/activate # for Linux/MacOS/GitBash
.venv\Scripts\activate # For Windows
# Install dependenices
python -m ensurepip
python -m pip install --upgrade pip
pdm export --without-hashes -o dev_requirements.txt
python -m pip install -r dev_requirements.txt
python -m pip install -e .
pipx install poetry
pipx inject poetry poetry-version-plugin
./scripts/test.py