There is IDE support for vscode and VIM. The docs are quite good.
This repository is xc compliant. The following tasks are available:
Try with no arg. Then try with arg
inputs: AN_ARG
echo $AN_ARG
Shows that you can't override MYVAR
environment: MYVAR=Default
echo $MYVAR
Can't run until the directory exists!
directory: ./build
echo $PWD
Try with no args. Then try with just one arg.
inputs: VAR1, VAR2 environment: VAR2=default_var2
echo $VAR1 $VAR2
See that both run!
requires: demo_env
echo requirements met!
Lets see if python works
#!/usr/local/bin/python3
print("I'm a real python!")
Install our poetry project
poetry install --with dev
Format our poetry project
isort .
black .
Lint and test
mypy .
flake8 .
pytest