# install cli tools via asdf
# (for mac users)
cut -d' ' -f1 .tool-versions | grep "^[^\#]" | xargs -I {} asdf plugin add {}
# (for linux users)
cat .tool-versions | cut -d' ' -f1 | grep "^[^\#]" | xargs -i echo {}
asdf install
# install node packages
yarn
# run dev server
yarn dev
Note If you got the following error message:
⛔ Missing one or more of the following dependencies: tar, gpg
Run the following cmd:
$ brew install gpg
yarn upgrade-interactive